mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-25 08:51:54 -05:00
move power-profiles-daemon to hardwareModules
This commit is contained in:
parent
575149a3a0
commit
84e1f6cf34
|
@ -7,6 +7,7 @@ inputs: {
|
||||||
imports = [
|
imports = [
|
||||||
./cpu
|
./cpu
|
||||||
./gpu
|
./gpu
|
||||||
|
./laptop
|
||||||
./options.nix
|
./options.nix
|
||||||
./ssd
|
./ssd
|
||||||
];
|
];
|
||||||
|
|
|
@ -1,11 +1,10 @@
|
||||||
{
|
{
|
||||||
config,
|
config,
|
||||||
inputs,
|
|
||||||
lib,
|
lib,
|
||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
config = lib.mkIf config.ar.base.power-profiles-daemon.enable {
|
config = lib.mkIf config.ar.hardware.laptop {
|
||||||
services = {
|
services = {
|
||||||
power-profiles-daemon.enable = true;
|
power-profiles-daemon.enable = true;
|
||||||
upower.enable = true;
|
upower.enable = true;
|
|
@ -10,7 +10,6 @@
|
||||||
./nix
|
./nix
|
||||||
./nixpkgs
|
./nixpkgs
|
||||||
./plymouth
|
./plymouth
|
||||||
./power-profiles-daemon
|
|
||||||
./sound
|
./sound
|
||||||
./zramSwap
|
./zramSwap
|
||||||
];
|
];
|
||||||
|
|
|
@ -247,11 +247,6 @@
|
||||||
default = config.ar.base.enable;
|
default = config.ar.base.enable;
|
||||||
type = lib.types.bool;
|
type = lib.types.bool;
|
||||||
};
|
};
|
||||||
power-profiles-daemon.enable = lib.mkOption {
|
|
||||||
description = "Power Profiles Daemon for power management.";
|
|
||||||
default = config.ar.base.enable;
|
|
||||||
type = lib.types.bool;
|
|
||||||
};
|
|
||||||
zramSwap = {
|
zramSwap = {
|
||||||
enable = lib.mkOption {
|
enable = lib.mkOption {
|
||||||
description = "zram swap.";
|
description = "zram swap.";
|
||||||
|
|
Loading…
Reference in a new issue