mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 08:19:42 +00:00
16 lines
343 B
Nix
16 lines
343 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 ];
|
|
};
|
|
}
|