16 lines
295 B
Nix
16 lines
295 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [ ./wifi.nix ];
|
|
|
|
services = {
|
|
tlp.enable = true;
|
|
upower.enable = true;
|
|
};
|
|
programs.light.enable = true;
|
|
users.users.artemis.extraGroups = [ "video" ];
|
|
|
|
environment.systemPackages = with pkgs;
|
|
[ config.boot.kernelPackages.cpupower ];
|
|
}
|