14 lines
202 B
Nix
14 lines
202 B
Nix
|
{ self, ... }:
|
||
|
{
|
||
|
system.autoUpgrade = {
|
||
|
enable = true;
|
||
|
flake = self.outPath;
|
||
|
flags = [
|
||
|
"--update-input"
|
||
|
"nixpkgs"
|
||
|
"--commit-lock-file"
|
||
|
];
|
||
|
dates = "daily";
|
||
|
};
|
||
|
}
|