diff options
Diffstat (limited to 'modules/common')
-rw-r--r-- | modules/common/nix.nix | 6 | ||||
-rw-r--r-- | modules/common/systemd.nix | 9 |
2 files changed, 3 insertions, 12 deletions
diff --git a/modules/common/nix.nix b/modules/common/nix.nix index 2054185..0ce2ae4 100644 --- a/modules/common/nix.nix +++ b/modules/common/nix.nix @@ -80,10 +80,10 @@ in trusted-users = [ my.username ]; substituters = [ - "https://cache.garnix.io" - "https://cache.tvl.su" "https://nix-community.cachix.org" - "https://numtide.cachix.org" + # "https://cache.garnix.io" + # "https://cache.tvl.su" + # "https://numtide.cachix.org" ]; trusted-public-keys = [ "cache.tvl.su:kjc6KOMupXc1vHVufJUoDUYeLzbwSr9abcAKdn/U1Jk=" diff --git a/modules/common/systemd.nix b/modules/common/systemd.nix index 996096e..f832518 100644 --- a/modules/common/systemd.nix +++ b/modules/common/systemd.nix @@ -1,6 +1,5 @@ { config, - lib, ... }: { @@ -36,16 +35,8 @@ user = { inherit extraConfig; }; - - suppressedSystemUnits = lib.optionals config.nixfiles.modules.ark.enable [ - "systemd-machine-id-commit.service" - ]; }; - boot.initrd.systemd.suppressedUnits = lib.optionals config.nixfiles.modules.ark.enable [ - "systemd-machine-id-commit.service" - ]; - environment.variables = { SYSTEMD_PAGERSECURE = "1"; SYSTEMD_PAGER = "less"; |