diff --git a/system/default.nix b/system/default.nix index ad1399c..d9733f7 100644 --- a/system/default.nix +++ b/system/default.nix @@ -1,4 +1,4 @@ -{ pkgs, config, lib, options, nixpkgs, home-manager, inputs, ... }@args: +{ pkgs, config, lib, options, nixpkgs, home-manager, inputs, utils, ... }@args: let cfg = config.nixfiles; flakeType = cfg.lib.types.flake; @@ -30,6 +30,12 @@ in type = lib.types.bool; }; + utils = lib.mkOption { + description = "nixpkgs `utils` argument passthrough"; + default = utils; + readOnly = true; + }; + workarounds.nvidiaPrimary = lib.mkOption { description = "Whether to enable workarounds for NVIDIA as the primary GPU"; default = false;