diff --git a/home-manager/linux/programs/hyprland.nix b/home-manager/linux/programs/hyprland.nix index cb0fe80..14ce084 100644 --- a/home-manager/linux/programs/hyprland.nix +++ b/home-manager/linux/programs/hyprland.nix @@ -61,7 +61,6 @@ in with lib; { sommelier # Polkit libsForQt5.polkit-kde-agent - polkit_gnome # Auto workspace renaming inputs.self.packages.${pkgs.system}.hyprland-autoname-workspaces ]; @@ -277,15 +276,15 @@ in with lib; { ## Hyprland Addons ######################### # Setup polkit as a service - systemd.user.services.polkit-gnome = { + systemd.user.services.polkit-kde = { Unit = { - Description = "Polkit gnome authentication agent"; + Description = "Polkit kde authentication agent"; After = [ "graphical-session.target" ]; }; Service = { Type = "simple"; ExecStart = - "${pkgs.polkit_gnome}/libexec/polkit-gnome-authentication-agent-1"; + "${pkgs.libsForQt5.polkit-kde-agent}/libexec/polkit-kde-authentication-agent-1"; Restart = "on-failure"; }; Install = { WantedBy = [ "hyprland-session.target" ]; };