flake/nixos/specialisation/default.nix
2023-09-19 08:17:43 +08:00

23 lines
No EOL
517 B
Nix

{ ... }:
{
specialisation = {
bspwm.configuration = {
system.nixos.tags = [ "bspwm" ];
services.xserver = {
displayManager.startx.enable = true;
windowManager.bspwm.enable = true;
};
};
plasma.configuration = {
system.nixos.tags = [ "plasma" ];
services.xserver = {
desktopManager.plasma5.enable = true;
displayManager.sddm = {
enable = true;
settings.General.DisplayServer = "wayland";
};
};
};
};
}