marleyos/modules/nixos/xorg/xfce/default.nix

20 lines
294 B
Nix
Raw Normal View History

2025-01-29 19:15:32 -08:00
{
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;
};
};
};
}