mirror of
https://github.com/ivabus/nixos
synced 2024-11-10 02:25:18 +03:00
11 lines
194 B
Nix
11 lines
194 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
powertop
|
|
];
|
|
services.tlp.enable = true;
|
|
services.upower.enable = true;
|
|
|
|
networking.wireless.iwd.enable = true;
|
|
} |