summaryrefslogtreecommitdiff
path: root/modules/nix-common.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/nix-common.nix')
-rw-r--r--modules/nix-common.nix19
1 files changed, 0 insertions, 19 deletions
diff --git a/modules/nix-common.nix b/modules/nix-common.nix
deleted file mode 100644
index 6e4d373..0000000
--- a/modules/nix-common.nix
+++ /dev/null
@@ -1,19 +0,0 @@
-{ config, pkgs, ... }: {
-
- nix = {
- settings = {
- allowed-users = [ "@wheel" "@builders" "@video" ];
- experimental-features = [ "nix-command" "flakes" ];
- };
-
- # Clean up old generations after 30 days
- gc = {
- automatic = true;
- dates = "weekly";
- options = "--delete-older-than 30d";
- };
-
- # Users allowed to run nix
- # allowedUsers = [ "root" ];
- };
-}