about summary refs log tree commit diff
path: root/nixos/modules/programs/partition-manager.nix
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2024-01-08 13:36:56 +0100
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2024-01-08 13:36:56 +0100
commit788c45eb575e7db2e7a104d586059958e61ab916 (patch)
treef05e8aac889766ef572106480f9aefe9569d73a0 /nixos/modules/programs/partition-manager.nix
parente10c14a05bb4ee7d57db9eebd722a504ecd6ba97 (diff)
downloadnixlib-788c45eb575e7db2e7a104d586059958e61ab916.tar
nixlib-788c45eb575e7db2e7a104d586059958e61ab916.tar.gz
nixlib-788c45eb575e7db2e7a104d586059958e61ab916.tar.bz2
nixlib-788c45eb575e7db2e7a104d586059958e61ab916.tar.lz
nixlib-788c45eb575e7db2e7a104d586059958e61ab916.tar.xz
nixlib-788c45eb575e7db2e7a104d586059958e61ab916.tar.zst
nixlib-788c45eb575e7db2e7a104d586059958e61ab916.zip
partition-manager: move to aliases.nix
Diffstat (limited to 'nixos/modules/programs/partition-manager.nix')
-rw-r--r--nixos/modules/programs/partition-manager.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/programs/partition-manager.nix b/nixos/modules/programs/partition-manager.nix
index c18598b7c25d..cf0491ff028f 100644
--- a/nixos/modules/programs/partition-manager.nix
+++ b/nixos/modules/programs/partition-manager.nix
@@ -14,6 +14,6 @@ with lib;
   config = mkIf config.programs.partition-manager.enable {
     services.dbus.packages = [ pkgs.libsForQt5.kpmcore ];
     # `kpmcore` need to be installed to pull in polkit actions.
-    environment.systemPackages = [ pkgs.libsForQt5.kpmcore pkgs.partition-manager ];
+    environment.systemPackages = [ pkgs.libsForQt5.kpmcore pkgs.libsForQt5.partitionmanager ];
   };
 }