diff options
| author | Raghuram Subramani <raghus2247@gmail.com> | 2024-03-11 20:53:34 +0530 | 
|---|---|---|
| committer | Raghuram Subramani <raghus2247@gmail.com> | 2024-03-11 20:53:34 +0530 | 
| commit | 44861481073bc3cdad0a5c7794c77f60e42d5ba1 (patch) | |
| tree | 1264d233a168722605b42834b59a888f754f469e /machines/x/configuration.nix | |
| parent | d72b6a8881d5a329d0e4aa9c43b6953a9b7be32c (diff) | |
update
Diffstat (limited to 'machines/x/configuration.nix')
| -rw-r--r-- | machines/x/configuration.nix | 10 | 
1 files changed, 10 insertions, 0 deletions
| diff --git a/machines/x/configuration.nix b/machines/x/configuration.nix index 8f31309..62c119e 100644 --- a/machines/x/configuration.nix +++ b/machines/x/configuration.nix @@ -27,6 +27,16 @@    nixpkgs.config.allowUnfree = true;    nixpkgs.config.allowUnfreePredicate = _: true; +  services.fstrim.enable = true; + +  services.tlp = { +    enable = true; +    settings = { +      CPU_SCALING_GOVERNOR_ON_AC = "performance"; +      CPU_SCALING_GOVERNOR_ON_BAT = "powersave"; +    } +  } +    networking.hostName = "x";    home-manager.users.compromyse = import ./home.nix; | 
