weekly update

This commit is contained in:
2026-05-27 09:26:54 +02:00
parent d254eb8bc0
commit 565a342b76
5 changed files with 16 additions and 13 deletions
+1
View File
@@ -5,6 +5,7 @@
../../modules/base.nix
../../modules/japanese.nix
../../modules/gc.nix
../../modules/upgrade.nix
../../modules/steam.nix
../../modules/guitar.nix
];
+1
View File
@@ -7,6 +7,7 @@
../../modules/niri.nix
../../modules/japanese.nix
../../modules/gc.nix
../../modules/upgrade.nix
];
networking.hostName = "laptop";
+1
View File
@@ -6,6 +6,7 @@
../../modules/dev
../../modules/niri.nix
../../modules/gc.nix
../../modules/upgrade.nix
../../modules/japanese.nix
];
-13
View File
@@ -1,18 +1,5 @@
{ config, inputs, ... }:
{
system.autoUpgrade = {
enable = true;
flake = inputs.self.outPath;
flags = [
"--update-input" "nixpkgs"
"--no-write-lock-file"
"--print-build-logs"
];
dates = "02:00";
randomizedDelaySec = "45min";
persistent = true;
};
nix.gc = {
automatic = true;
dates = "weekly";
+13
View File
@@ -0,0 +1,13 @@
{ inputs, ... }: {
system.autoUpgrade = {
enable = true;
flake = inputs.self.outPath;
flags = [
"--update-input" "nixpkgs"
"--no-write-lock-file"
"--print-build-logs"
];
dates = "weekly";
persistent = true;
};
}