flake/nixos/specialisation/default.nix

23 lines
517 B
Nix
Raw Normal View History

2023-09-19 00:17:43 +00:00
{ ... }:
{
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";
};
};
};
};
}