nix-conf/system/plasma.nix
2024-10-19 01:35:49 -05:00

14 lines
287 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;
};
}