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, ... }:
|
||||
|
||||
{
|
||||
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;
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
{ pkgs, lib, config, ... }: {
|
||||
|
||||
options = {
|
||||
systemConfig.power-profiles-daemon.enable = lib.mkEnableOption
|
||||
"Enables power-profiles-daemon.";
|
||||
systemConfig.power-profiles-daemon.enable =
|
||||
lib.mkEnableOption "Enables power-profiles-daemon.";
|
||||
};
|
||||
|
||||
config = lib.mkIf config.systemConfig.power-profiles-daemon.enable {
|
||||
|
|
Loading…
Reference in a new issue