This commit is contained in:
2026-03-27 21:46:55 +01:00
parent 9aaba131e1
commit 60267a5515
3 changed files with 6 additions and 23 deletions

View File

@@ -1,16 +0,0 @@
{ pkgs, ... }:
{
services.xserver.desktopManager.plasma6.enable = true;
services.xrdp.enable = true;
services.xrdp.defaultWindowManager = "startplasma-x11";
services.xrdp.openFirewall = true;
programs.seahorse.enable = false;
security.polkit.extraConfig = ''
polkit.addRule(function(action, subject) {
if (action.id.indexOf("org.freedesktop.color-manager.") == 0 && subject.isInGroup("users")) {
return polkit.Result.YES;
}
});
'';
}