auto updates flake

This commit is contained in:
Adrian Gunnar Lauterer 2024-04-08 21:34:10 +02:00
parent d55c831e73
commit b81c4f264c
1 changed files with 9 additions and 1 deletions

View File

@ -50,6 +50,14 @@ imports =
#nix stuff #nix stuff
nix.settings.experimental-features = [ "nix-command" "flakes" ]; nix.settings.experimental-features = [ "nix-command" "flakes" ];
nix.gc.automatic = true; nix.gc.automatic = true;
system.autoUpgrade.enable = true; system.autoUpgrade = {
enable = true;
flake = "git+https://github.com/adrlau/nix-dotfiles.git";
flags = [
"--update-input" "nixpkgs"
"--update-input" "nixpkgs-unstable"
"--no-write-lock-file"
];
};
} }