python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / nixos / modules / programs / partition-manager.nix
blobc18598b7c25d606c020a31b8cce71a1b5bb89832
1 { config, lib, pkgs, ... }:
3 with lib;
6   meta.maintainers = [ maintainers.oxalica ];
8   ###### interface
9   options = {
10     programs.partition-manager.enable = mkEnableOption (lib.mdDoc "KDE Partition Manager");
11   };
13   ###### implementation
14   config = mkIf config.programs.partition-manager.enable {
15     services.dbus.packages = [ pkgs.libsForQt5.kpmcore ];
16     # `kpmcore` need to be installed to pull in polkit actions.
17     environment.systemPackages = [ pkgs.libsForQt5.kpmcore pkgs.partition-manager ];
18   };