nix-conf/system/plasma.nix
2024-10-27 12:34:49 -05:00

12 lines
284 B
Nix

{pkgs, ...}: {
programs.partition-manager = {
enable = true;
package = pkgs.libsForQt5.partitionmanager;
};
services.udisks2.enable = true;
systemd.user.services = {
plasma-kactivitymanagerd.enable = false;
plasma-xdg-desktop-portal-kde.enable = false;
};
}