refactor: clean up redundant settings
check / lint (push) Successful in 47s

This commit is contained in:
2026-08-24 20:04:42 +02:00
parent 7c283c61c4
commit 8b6d8bd092
3 changed files with 2 additions and 21 deletions
+1 -10
View File
@@ -59,16 +59,7 @@ in
git git
]; ];
nix.settings = { nix.settings.trusted-users = [ "@wheel" ];
experimental-features = [
"nix-command"
"flakes"
];
trusted-users = [
"root"
"@wheel"
];
};
system.stateVersion = "26.05"; system.stateVersion = "26.05";
} }
+1 -10
View File
@@ -112,16 +112,7 @@ in
git git
]; ];
nix.settings = { nix.settings.trusted-users = [ "@wheel" ];
experimental-features = [
"nix-command"
"flakes"
];
trusted-users = [
"root"
"@wheel"
];
};
system.stateVersion = "26.05"; system.stateVersion = "26.05";
} }
-1
View File
@@ -5,6 +5,5 @@
config = lib.mkIf config.storage.enable { config = lib.mkIf config.storage.enable {
services.udisks2.enable = true; services.udisks2.enable = true;
boot.zfs.forceImportRoot = false;
}; };
} }