nixcfg/hardwareModules/laptop/default.nix

14 lines
188 B
Nix

{
config,
lib,
pkgs,
...
}: {
config = lib.mkIf config.ar.hardware.laptop {
services = {
power-profiles-daemon.enable = true;
upower.enable = true;
};
};
}