tweak update settings, update flake.lock

This commit is contained in:
Vinzenz Schroeter 2024-12-21 14:38:16 +01:00
parent 906a264118
commit d65d585136
4 changed files with 12 additions and 8 deletions

View file

@ -41,7 +41,8 @@
# enable auto updates # enable auto updates
autoUpgrade = { autoUpgrade = {
enable = true; enable = true;
dates = "weekly"; dates = "daily";
flake = "github:kaesaecracker/nixos-configuration";
}; };
}; };

View file

@ -40,11 +40,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1733951536, "lastModified": 1734366194,
"narHash": "sha256-Zb5ZCa7Xj+0gy5XVXINTSr71fCfAv+IKtmIXNrykT54=", "narHash": "sha256-vykpJ1xsdkv0j8WOVXrRFHUAdp9NXHpxdnn1F4pYgSw=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "1318c3f3b068cdcea922fa7c1a0a1f0c96c22f5f", "rev": "80b0fdf483c5d1cb75aaad909bd390d48673857f",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -91,11 +91,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1733808091, "lastModified": 1734600368,
"narHash": "sha256-KWwINTQelKOoQgrXftxoqxmKFZb9pLVfnRvK270nkVk=", "narHash": "sha256-nbG9TijTMcfr+au7ZVbKpAhMJzzE2nQBYmRvSdXUD8g=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "a0f3e10d94359665dba45b71b4227b0aeb851f8e", "rev": "b47fd6fa00c6afca88b8ee46cfdb00e104f50bca",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -18,7 +18,7 @@
self, self,
nixpkgs, nixpkgs,
home-manager, home-manager,
lix-module lix-module,
}: }:
{ {
nixosConfigurations = nixosConfigurations =

View file

@ -33,5 +33,8 @@ nixpkgs.lib.nixosSystem {
]; ];
}; };
} }
{
system.autoUpgrade.allowReboot = true;
}
]; ];
} }