feat: add automatic timezone daemon to laptop module

This commit is contained in:
2026-05-25 13:37:39 -05:00
parent f3b32776f6
commit 1548d0b748
2 changed files with 9 additions and 5 deletions

View File

@@ -0,0 +1,7 @@
{ ... }: {
flake.nixosModules.commonFeatureLaptop = { ... }: {
services.upower.enable = true;
services.logind.settings.Login.HandlePowerKey = "ignore";
services.automatic-timezoned.enable = true;
};
}