diff options
| author | Fuwn <[email protected]> | 2024-10-28 09:45:16 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-28 09:45:20 -0700 |
| commit | aa205e33bc2b1c94ef5fd0a4fd348d153bf5abc3 (patch) | |
| tree | 4dfdaaf6bd2dbacca58393787ba7c1164baeb357 /modules | |
| parent | options: distributed builds nix option (diff) | |
| download | nixos-config-aa205e33bc2b1c94ef5fd0a4fd348d153bf5abc3.tar.xz nixos-config-aa205e33bc2b1c94ef5fd0a4fd348d153bf5abc3.zip | |
options: rename nix.extend to nix.extendedSupport
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/core/nix/default.nix | 2 | ||||
| -rw-r--r-- | modules/core/nix/extended-support.nix (renamed from modules/core/nix/extended.nix) | 2 | ||||
| -rw-r--r-- | modules/options/nix.nix | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/modules/core/nix/default.nix b/modules/core/nix/default.nix index 2280f97..7f60e31 100644 --- a/modules/core/nix/default.nix +++ b/modules/core/nix/default.nix @@ -7,7 +7,7 @@ { imports = [ ./distributed-builds.nix - ./extended.nix + ./extended-support.nix ./nh.nix ]; diff --git a/modules/core/nix/extended.nix b/modules/core/nix/extended-support.nix index 6ce2695..ac85e6a 100644 --- a/modules/core/nix/extended.nix +++ b/modules/core/nix/extended-support.nix @@ -5,7 +5,7 @@ ... }: { - config = lib.mkIf config.modules.nix.extend { + config = lib.mkIf config.modules.nix.extendedSupport { programs.nix-index-database.comma.enable = true; boot.binfmt.emulatedSystems = [ "aarch64-linux" ]; diff --git a/modules/options/nix.nix b/modules/options/nix.nix index 62836ae..4cc54ec 100644 --- a/modules/options/nix.nix +++ b/modules/options/nix.nix @@ -4,7 +4,7 @@ with lib.options; with lib.types; { - extend = mkOption { + extendedSupport = mkOption { default = false; type = types.bool; }; |