aboutsummaryrefslogtreecommitdiff
path: root/modules/system/nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/system/nix')
-rw-r--r--modules/system/nix/default.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/modules/system/nix/default.nix b/modules/system/nix/default.nix
new file mode 100644
index 0000000..2ad20c3
--- /dev/null
+++ b/modules/system/nix/default.nix
@@ -0,0 +1,16 @@
+# Nix related settings
+{ lib, pkgs, ... }: {
+ nix = {
+ package = pkgs.nixFlakes;
+ extraOptions = ''
+ experimental-features = nix-command flakes
+ '';
+ autoOptimiseStore = true;
+ trustedUsers = [ "root" "@wheel" ];
+
+ gc = {
+ automatic = true;
+ options = "--delete-older-than 14d";
+ };
+ };
+}