aboutsummaryrefslogtreecommitdiffstats
path: root/system/services/nix
diff options
context:
space:
mode:
Diffstat (limited to 'system/services/nix')
-rw-r--r--system/services/nix/default.nix23
1 files changed, 0 insertions, 23 deletions
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"
- ];
- };
- };
-}