NixOS-Config/modules/system/settings/nix/autoupgrade/default.nix

14 lines
202 B
Nix
Raw Normal View History

2024-12-01 20:10:31 -05:00
{ self, ... }:
{
system.autoUpgrade = {
enable = true;
flake = self.outPath;
flags = [
"--update-input"
"nixpkgs"
"--commit-lock-file"
];
dates = "daily";
};
}