Files
nix-config/hosts/common/optional/sddm.nix
2025-05-12 23:25:39 -03:00

11 lines
225 B
Nix

# NOTE(starter): This is just a basic enabling of the XFCE windows manager for simplicity
{
services.displayManager = {
sddm.enable = true;
sddm.wayland = {
enable = true;
compositor = "kwin";
};
};
}