feat(nixos): Install Xfce

This commit is contained in:
punkfairie 2025-01-29 19:15:32 -08:00
parent 195654d44d
commit b8179f9584
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{
lib,
config,
...
}: let
cfg = config.marleyos.xorg.xfce;
in {
options.marleyos.xorg.xfce.enable = lib.mkEnableOption "xfce";
config = lib.mkIf cfg.enable {
services.xserver = {
enable = true;
desktopManager.xfce = {
enable = true;
};
};
};
}

View file

@ -12,6 +12,7 @@ in {
hasNvidia = true;
mounts.babeshare = enabled;
wayland.hyprland = enabled;
xorg.xfce = enabled;
appearance = {
base = enabled;