Add autoupgrade

This commit is contained in:
Jimbo 2024-12-01 20:10:31 -05:00
parent 0042da23be
commit 18bb13226c
4 changed files with 21 additions and 1 deletions

View file

@ -0,0 +1,13 @@
{ self, ... }:
{
system.autoUpgrade = {
enable = true;
flake = self.outPath;
flags = [
"--update-input"
"nixpkgs"
"--commit-lock-file"
];
dates = "daily";
};
}

View file

@ -1,5 +1,9 @@
{ ... }:
{
imports = [
./autoupgrade
];
nix = {
settings = {
experimental-features = [