nixcfg/hardwareModules/laptop/default.nix

14 lines
188 B
Nix
Raw Normal View History

2024-04-07 22:16:33 -04:00
{
config,
lib,
pkgs,
2024-04-07 22:16:33 -04:00
...
}: {
config = lib.mkIf config.ar.hardware.laptop {
services = {
power-profiles-daemon.enable = true;
upower.enable = true;
};
};
}