diff --git a/config/hosts/aspects/doloro-laptop/home.nix b/config/hosts/aspects/doloro-laptop/home.nix index 9631830..6f4e220 100644 --- a/config/hosts/aspects/doloro-laptop/home.nix +++ b/config/hosts/aspects/doloro-laptop/home.nix @@ -27,5 +27,11 @@ hashedPasswordFile = config.sops.secrets."doloro-hashed_password".path; }; }; + homeManager = + { pkgs, ... }: + { + home.packages = with pkgs; [ teamviewer ]; + nixpkgs.config.allowUnfree = true; + }; }; } diff --git a/config/modules/power-management/tlp.nix b/config/modules/power-management/tlp.nix index edb0ac7..93660f7 100644 --- a/config/modules/power-management/tlp.nix +++ b/config/modules/power-management/tlp.nix @@ -7,10 +7,10 @@ enable = true; settings = { # Wireless power saving - WIFI_PWR_ON_BAT = "1"; + WIFI_PWR_ON_BAT = "on"; # USB autosuspend - USB_AUTOSUSPEND = "1"; + USB_AUTOSUSPEND = "on"; # SATA drive power management SATA_LINKPWR_ON_BAT = "min_power";