summaryrefslogtreecommitdiff
path: root/config/store.nix
diff options
context:
space:
mode:
authorQuentin Aristote <quentin@aristote.fr>2023-02-19 16:56:48 +0100
committerQuentin Aristote <quentin@aristote.fr>2023-02-19 17:01:10 +0100
commit25f9b854c0065a3d63278178ef4c8abc99108eba (patch)
tree50eb4c1d8e32d65b49905ebfb8ff8411045e30d6 /config/store.nix
parent547870aaafcafe4836557f2fc98768053af26ef2 (diff)
parent7532f335a3ed8a898e2df95f06faa38bad2b8e5d (diff)
Merge branch 'rollback'
Diffstat (limited to 'config/store.nix')
-rw-r--r--config/store.nix21
1 files changed, 0 insertions, 21 deletions
diff --git a/config/store.nix b/config/store.nix
deleted file mode 100644
index 8efcd5d..0000000
--- a/config/store.nix
+++ /dev/null
@@ -1,21 +0,0 @@
-{ lib, ... }:
-
-{
- nix = {
- settings = {
- auto-optimise-store = true;
- experimental-features = [ "nix-command" "flakes" ];
- };
- gc = {
- automatic = true;
- dates = "daily";
- options = "--delete-old";
- };
- settings.max-jobs = lib.mkDefault 1;
- };
- system.autoUpgrade = {
- enable = true;
- flake = "git+file:///etc/nixos/";
- flags = [ "--update-input" "nixpkgs" "--commit-lock-file" ];
- };
-}