nix-conf/system/plasma.nix
2024-12-22 23:46:42 -05:00

14 lines
211 B
Nix

{
config,
lib,
pkgs,
...
}:
lib.mkIf config.u.has.graphical {
programs.partition-manager = {
enable = true;
package = pkgs.libsForQt5.partitionmanager;
};
services.udisks2.enable = true;
}