mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 07:13:55 -05:00
formatted systemConfig
This commit is contained in:
parent
95c3b00038
commit
76b177a2f0
|
@ -1,8 +1,8 @@
|
||||||
{ config, pkgs, lib, ... }:
|
{ config, pkgs, lib, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [ ./network.nix ./sound.nix ./plymouth ./power-profiles-daemon ./zramSwap ];
|
imports =
|
||||||
|
[ ./network.nix ./sound.nix ./plymouth ./power-profiles-daemon ./zramSwap ];
|
||||||
|
|
||||||
systemConfig.power-profiles-daemon.enable = lib.mkDefault true;
|
systemConfig.power-profiles-daemon.enable = lib.mkDefault true;
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
{ pkgs, lib, config, ... }: {
|
{ pkgs, lib, config, ... }: {
|
||||||
|
|
||||||
options = {
|
options = {
|
||||||
systemConfig.power-profiles-daemon.enable = lib.mkEnableOption
|
systemConfig.power-profiles-daemon.enable =
|
||||||
"Enables power-profiles-daemon.";
|
lib.mkEnableOption "Enables power-profiles-daemon.";
|
||||||
};
|
};
|
||||||
|
|
||||||
config = lib.mkIf config.systemConfig.power-profiles-daemon.enable {
|
config = lib.mkIf config.systemConfig.power-profiles-daemon.enable {
|
||||||
|
|
Loading…
Reference in a new issue