From 232787d04d2e7052640f86b1d1eb715034d02288 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Mon, 28 Oct 2024 09:38:06 -0700 Subject: options: flip nix.extend default --- hosts/akashi/configuration.nix | 1 + hosts/himeji/configuration.nix | 1 - hosts/kansai/configuration.nix | 1 + hosts/kioku/configuration.nix | 1 - 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; }; } -- cgit v1.2.3