feat(nixos): Install Xfce
This commit is contained in:
parent
195654d44d
commit
b8179f9584
2 changed files with 20 additions and 0 deletions
19
modules/nixos/xorg/xfce/default.nix
Normal file
19
modules/nixos/xorg/xfce/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -12,6 +12,7 @@ in {
|
||||||
hasNvidia = true;
|
hasNvidia = true;
|
||||||
mounts.babeshare = enabled;
|
mounts.babeshare = enabled;
|
||||||
wayland.hyprland = enabled;
|
wayland.hyprland = enabled;
|
||||||
|
xorg.xfce = enabled;
|
||||||
|
|
||||||
appearance = {
|
appearance = {
|
||||||
base = enabled;
|
base = enabled;
|
||||||
|
|
Loading…
Reference in a new issue