This commit is contained in:
Till 2026-03-04 19:50:45 +01:00
parent 312d6d63ef
commit 96e5924fb0
17 changed files with 126 additions and 43 deletions

18
system/desktop/plasma.nix Normal file
View file

@ -0,0 +1,18 @@
{ ... }:
{
services.desktopManager.plasma6.enable = true;
programs.kdeconnect.enable = true;
networking.firewall = rec {
allowedTCPPortRanges = [ { from = 1714; to = 1764; } ];
allowedUDPPortRanges = allowedTCPPortRanges;
};
services.displayManager.sddm = {
enable = true;
wayland.enable = true;
settings.General.DisplayServer = "wayland";
};
}