This commit is contained in:
Ananth Venkatesh 2025-06-15 18:25:53 -07:00 committed by GitHub
commit 6f5cbe390e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 119 additions and 34 deletions

View file

@ -7,7 +7,7 @@
lib,
...
}:
{
rec {
imports = [ ./hardware-configuration.nix ];
networking.hostName = "callisto";
@ -86,5 +86,17 @@
};
};
system.stateVersion = "24.11";
system = {
stateVersion = "24.11";
# Automatically rebuild system daily
autoUpgrade = {
enable = true;
flake = liminalOS.flakeLocation;
flags = [
"-L" # print build logs
];
dates = "daily";
};
};
}