fix: suzu

This commit is contained in:
Ryan Yin
2024-03-04 00:41:41 +08:00
parent d20760cd61
commit f933146a42
14 changed files with 160 additions and 187 deletions
+16
View File
@@ -0,0 +1,16 @@
{lib, ...}: {
boot.loader.systemd-boot = {
# we use Git for version control, so we don't need to keep too many generations.
configurationLimit = lib.mkDefault 10;
# pick the highest resolution for systemd-boot's console.
consoleMode = lib.mkDefault "max";
};
# for power management
services = {
power-profiles-daemon = {
enable = true;
};
upower.enable = true;
};
}