Compare commits

...

2 Commits

Author SHA1 Message Date
e529a4814f Enable automatic updates 2026-02-07 23:34:11 -05:00
e36f43b7d4 Disable gitea actions 2026-02-07 23:33:48 -05:00
2 changed files with 21 additions and 0 deletions

View File

@@ -19,6 +19,23 @@
nix.settings.experimental-features = [ "nix-command" "flakes" ]; nix.settings.experimental-features = [ "nix-command" "flakes" ];
system.autoUpgrade = {
enable = true;
flake = inputs.self.outPath;
flags = [
"-L"
];
allowReboot = true;
rebootWindow = {
lower = "03:00";
upper = "05:00";
};
dates = "02:00";
randomizedDelaySec = "45min";
};
system.stateVersion = "25.11"; system.stateVersion = "25.11";
nixpkgs.hostPlatform = "x86_64-linux"; nixpkgs.hostPlatform = "x86_64-linux";
hardware.enableRedistributableFirmware = true; hardware.enableRedistributableFirmware = true;

View File

@@ -10,6 +10,10 @@
server = { server = {
ROOT_URL = "https://seed.tty.garden/"; ROOT_URL = "https://seed.tty.garden/";
}; };
actions = {
ENABLED = false;
};
}; };
}; };
} }