Removes unused mkMerge.

This commit is contained in:
Bailey 2024-04-23 20:16:50 -04:00
parent e9d22cb0bc
commit e3fb5c7ad8

View file

@ -17,9 +17,8 @@ in
};
};
config = lib.mkIf (!isNull cfg.graphical.desktop) (lib.mkMerge [
# Config for all desktops
{
# Config for all desktops
config = lib.mkIf (!isNull cfg.graphical.desktop) {
sound.enable = true;
hardware.pulseaudio.enable = false;
services.pipewire = {
@ -81,6 +80,5 @@ in
};
};
services.power-profiles-daemon.enable = !config.services.tlp.enable;
}
]);
};
}