System Gen6 @ 2025-05-04-14:13:13 by jonas@monolith

This commit is contained in:
Jonas Röger 2025-05-04 14:13:15 +02:00
parent 526ff8bbcb
commit 67d444fc29

View File

@ -1,6 +1,7 @@
{
config,
lib,
pkgs,
...
}: let
cfg = config.hive.plasma;
@ -11,5 +12,13 @@ in {
config = lib.mkIf cfg.enable {
services.xserver.desktopManager.plasma5.enable = true;
xdg.portal = {
enable = true;
extraPortals = with pkgs; [
xdg-desktop-portal-kde
xdg-desktop-portal-gtk
];
};
};
}