From 8b6d8bd0927fcf579dbc594a9f9bf14077f8f70a Mon Sep 17 00:00:00 2001 From: hektor Date: Sat, 11 Jul 2026 23:00:03 +0200 Subject: [PATCH] refactor: clean up redundant settings --- hosts/eetion-02/default.nix | 11 +---------- hosts/eetion/default.nix | 11 +---------- modules/storage/default.nix | 1 - 3 files changed, 2 insertions(+), 21 deletions(-) diff --git a/hosts/eetion-02/default.nix b/hosts/eetion-02/default.nix index 9e690f4..b8c065f 100644 --- a/hosts/eetion-02/default.nix +++ b/hosts/eetion-02/default.nix @@ -59,16 +59,7 @@ in git ]; - nix.settings = { - experimental-features = [ - "nix-command" - "flakes" - ]; - trusted-users = [ - "root" - "@wheel" - ]; - }; + nix.settings.trusted-users = [ "@wheel" ]; system.stateVersion = "26.05"; } diff --git a/hosts/eetion/default.nix b/hosts/eetion/default.nix index adc7f81..6c98aff 100644 --- a/hosts/eetion/default.nix +++ b/hosts/eetion/default.nix @@ -112,16 +112,7 @@ in git ]; - nix.settings = { - experimental-features = [ - "nix-command" - "flakes" - ]; - trusted-users = [ - "root" - "@wheel" - ]; - }; + nix.settings.trusted-users = [ "@wheel" ]; system.stateVersion = "26.05"; } diff --git a/modules/storage/default.nix b/modules/storage/default.nix index f3d1b09..2589d11 100644 --- a/modules/storage/default.nix +++ b/modules/storage/default.nix @@ -5,6 +5,5 @@ config = lib.mkIf config.storage.enable { services.udisks2.enable = true; - boot.zfs.forceImportRoot = false; }; }