mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 08:19:42 +00:00
21 lines
350 B
Nix
21 lines
350 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}: let
|
|
inherit (lib) mkIf;
|
|
deviceType = config.myOptions.device.roles.type;
|
|
acceptedTypes = ["laptop"];
|
|
in {
|
|
imports = [
|
|
./power-profiles-daemon
|
|
./upower.nix
|
|
./acpi.nix
|
|
];
|
|
|
|
config = mkIf (builtins.elem deviceType acceptedTypes) {
|
|
environment.systemPackages = with pkgs; [powertop];
|
|
};
|
|
}
|