Files
nix-config/modules/graphical/xfce.nix
2025-10-30 21:59:31 +01:00

25 lines
397 B
Nix

{
lib,
config,
pkgs,
...
}:
with lib;
let
cfg = config.custom.graphical.xfce;
in
{
options.custom.graphical.xfce = {
enable = mkEnableOption "Enables xfce";
};
config = mkIf cfg.enable {
services.xserver = {
xkb.layout = config.mainUser.layout;
xkb.variant = config.mainUser.variant;
enable = true;
desktopManager.xfce.enable = true;
};
};
}