summary refs log tree commit diff stats
path: root/system/services
diff options
context:
space:
mode:
authorSilas Schöffel <sils@sils.li>2025-01-20 16:24:59 +0100
committerSilas Schöffel <sils@sils.li>2025-01-20 16:24:59 +0100
commit958f969592d51f69e63d28fb7af3d4c5e0488bab (patch)
treebe1f0cc345ee6d61a41ed728064e59d6e97c6f57 /system/services
parentfeat(modules/invidious-router): init (diff)
downloadnixos-server-958f969592d51f69e63d28fb7af3d4c5e0488bab.zip
feat(modules/nixconfig): init
Diffstat (limited to 'system/services')
-rw-r--r--system/services/default.nix1
-rw-r--r--system/services/nix/default.nix23
2 files changed, 0 insertions, 24 deletions
diff --git a/system/services/default.nix b/system/services/default.nix
index 3403eea..819c36a 100644
--- a/system/services/default.nix
+++ b/system/services/default.nix
@@ -6,7 +6,6 @@
     ./matrix
     ./minecraft
     ./murmur
-    ./nix
     ./restic
     ./taskserver
   ];
diff --git a/system/services/nix/default.nix b/system/services/nix/default.nix
deleted file mode 100644
index 13be0f0..0000000
--- a/system/services/nix/default.nix
+++ /dev/null
@@ -1,23 +0,0 @@
-{
-  config,
-  lib,
-  pkgs,
-  ...
-}: {
-  nix = {
-    #    gc = {
-    #      automatic = true;
-    #      dates = "daily";
-    #      options = "--delete-older-than 3";
-    #    };
-    settings = {
-      auto-optimise-store = true;
-      experimental-features = ["nix-command" "flakes"];
-      trusted-users = [
-        "root"
-        "nixremote"
-        "@wheel"
-      ];
-    };
-  };
-}