14 lines
258 B
Nix
14 lines
258 B
Nix
{ inputs, ... }: {
|
|
system.autoUpgrade = {
|
|
enable = true;
|
|
flake = inputs.self.outPath;
|
|
flags = [
|
|
"--update-input" "nixpkgs"
|
|
"--no-write-lock-file"
|
|
"--print-build-logs"
|
|
];
|
|
dates = "weekly";
|
|
persistent = true;
|
|
};
|
|
}
|