about summary refs log tree commit diff
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
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
-rw-r--r--nixos/modules/programs/partition-manager.nix2
-rw-r--r--pkgs/top-level/aliases.nix1
-rw-r--r--pkgs/top-level/all-packages.nix2
3 files changed, 2 insertions, 3 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 ];
   };
 }
diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix
index 10d4d1b2840b..6c0a823dcf21 100644
--- a/pkgs/top-level/aliases.nix
+++ b/pkgs/top-level/aliases.nix
@@ -760,6 +760,7 @@ mapAliases ({
   paperless-ng = paperless-ngx; # Added 2022-04-11
   paper-note = throw "paper-note has been removed: abandoned by upstream"; # Added 2023-05-03
   parity = openethereum; # Added 2020-08-01
+  partition-manager = libsForQt5.partitionmanager; # Added 2024-01-08
   pash = throw "'pash' has been removed: abandoned by upstream. Use 'powershell' instead"; # Added 2023-09-16
   pcsctools = pcsc-tools; # Added 2023-12-07
   pdf2xml = throw "'pdf2xml' was removed: abandoned for years."; # Added 2023-10-22
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index fd860051fa5a..1b63e0019dfc 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -9858,8 +9858,6 @@ with pkgs;
 
   krakenx = callPackage ../tools/system/krakenx { };
 
-  partition-manager = libsForQt5.partitionmanager;
-
   kpcli = callPackage ../tools/security/kpcli { };
 
   kphotoalbum = libsForQt5.callPackage ../applications/graphics/kphotoalbum { };