a little restructuring of home manager to focus on host specific configs

This commit is contained in:
2025-11-01 12:33:27 -05:00
parent ba2bcba53b
commit 84b7477cff
12 changed files with 118 additions and 74 deletions

View File

@@ -34,6 +34,13 @@
# allow proprietary packages
nixpkgs.config.allowUnfree = true;
# fix power buttons
services.logind.settings.Login = {
HandlePowerKey = "suspend";
HandleLidSwitch = "suspend";
#HibernateDelaySec = "30min";
};
# power management
services.autoaspm.enable = true;
powerManagement.powertop.enable = true;

View File

@@ -22,6 +22,7 @@
tailscale.enable = true;
};
# boot (systemd is going on me)
boot.loader.systemd-boot.enable = true; # systemd your pretty cool ya know
boot.loader.efi.canTouchEfiVariables = true;