Init hyprpolkitagent

This commit is contained in:
Hadi
2024-10-23 20:15:46 +02:00
parent d7831f4115
commit 965ef9e76e
4 changed files with 93 additions and 8 deletions

View File

@@ -11,7 +11,7 @@ let
keyboardLayout = config.var.keyboardLayout;
in {
imports = [ ./animations.nix ./bindings.nix ];
imports = [ ./animations.nix ./bindings.nix ./polkitagent.nix ];
home.packages = with pkgs; [
qt5.qtwayland

View File

@@ -0,0 +1,7 @@
{ inputs, pkgs, ... }: {
home.packages =
[ inputs.hyprpolkitagent.packages."${pkgs.system}".hyprpolkitagent ];
wayland.windowManager.hyprland.exec-once =
[ "systemctl --user start hyprpolkitagent" ];
}