cleaned up a whole bunch

This commit is contained in:
Gerg-L 2023-05-25 22:58:18 -04:00
parent 2f04dc0e23
commit a959cf3e97
17 changed files with 199 additions and 220 deletions

View file

@ -1,14 +1,13 @@
{
config,
lib,
pkgs,
...
}: let
cfg = config.localModules.DE.xfce;
in {
options.localModules.DE.xfce = {
enable = lib.mkEnableOption "";
};
config = lib.mkIf cfg.enable {
}: {
options.localModules.DE.xfce.enable = lib.mkEnableOption "";
config = lib.mkIf config.localModules.DE.xfce.enable {
environment.systemPackages = [pkgs.xfce.xfce4-whiskermenu-plugin];
services.xserver = {
enable = true;
desktopManager.xfce = {