Files
nix-config/modules/graphical/xfce.nix
Kopatz 332f581362 typo
2025-05-27 13:29:59 +02:00

20 lines
389 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;
};
};
}