diff options
| author | Fuwn <[email protected]> | 2024-10-28 09:38:06 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-28 09:38:06 -0700 |
| commit | 232787d04d2e7052640f86b1d1eb715034d02288 (patch) | |
| tree | 5f3b69619712d0d6b0a0fea4cb58f34b4a8e51a8 | |
| parent | hosts: provide common option bindings (diff) | |
| download | nixos-config-232787d04d2e7052640f86b1d1eb715034d02288.tar.xz nixos-config-232787d04d2e7052640f86b1d1eb715034d02288.zip | |
options: flip nix.extend default
| -rw-r--r-- | hosts/akashi/configuration.nix | 1 | ||||
| -rw-r--r-- | hosts/himeji/configuration.nix | 1 | ||||
| -rw-r--r-- | hosts/kansai/configuration.nix | 1 | ||||
| -rw-r--r-- | hosts/kioku/configuration.nix | 1 | ||||
| -rw-r--r-- | modules/options/nix.nix | 2 |
5 files changed, 3 insertions, 3 deletions
diff --git a/hosts/akashi/configuration.nix b/hosts/akashi/configuration.nix index dd09c91..48f1659 100644 --- a/hosts/akashi/configuration.nix +++ b/hosts/akashi/configuration.nix @@ -15,6 +15,7 @@ modules = { primaryUser = "ebisu"; mosh.enable = true; + nix.extend = true; }; system.stateVersion = "24.05"; diff --git a/hosts/himeji/configuration.nix b/hosts/himeji/configuration.nix index 14296d8..39d4f09 100644 --- a/hosts/himeji/configuration.nix +++ b/hosts/himeji/configuration.nix @@ -13,7 +13,6 @@ system.stateVersion = "24.05"; modules = { - nix.extend = false; mosh.enable = true; containers = { diff --git a/hosts/kansai/configuration.nix b/hosts/kansai/configuration.nix index 0d7f118..c33068d 100644 --- a/hosts/kansai/configuration.nix +++ b/hosts/kansai/configuration.nix @@ -12,6 +12,7 @@ modules = { primaryUser = "ebisu"; mosh.enable = true; + nix.extend = true; }; networking.hostName = "kansai"; diff --git a/hosts/kioku/configuration.nix b/hosts/kioku/configuration.nix index 8e49bd6..87475f0 100644 --- a/hosts/kioku/configuration.nix +++ b/hosts/kioku/configuration.nix @@ -15,7 +15,6 @@ in ]; config = { - modules.nix.extend = false; time.timeZone = secrets.i18n.timezone; system.stateVersion = "24.05"; raspberry-pi-nix.kernel-version = "v6_10_12"; diff --git a/modules/options/nix.nix b/modules/options/nix.nix index bd831dc..63301bc 100644 --- a/modules/options/nix.nix +++ b/modules/options/nix.nix @@ -1,7 +1,7 @@ { lib, ... }: { options.modules.nix.extend = lib.options.mkOption { - default = true; + default = false; type = lib.types.bool; }; } |