summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-10-28 09:45:16 -0700
committerFuwn <[email protected]>2024-10-28 09:45:20 -0700
commitaa205e33bc2b1c94ef5fd0a4fd348d153bf5abc3 (patch)
tree4dfdaaf6bd2dbacca58393787ba7c1164baeb357 /modules
parentoptions: distributed builds nix option (diff)
downloadnixos-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.nix2
-rw-r--r--modules/core/nix/extended-support.nix (renamed from modules/core/nix/extended.nix)2
-rw-r--r--modules/options/nix.nix2
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;
};