formatted systemConfig

This commit is contained in:
Aly Raffauf 2024-03-30 14:49:40 -04:00
parent 95c3b00038
commit 76b177a2f0
2 changed files with 4 additions and 4 deletions

View file

@ -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;

View file

@ -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 {