nix-conf/system/modules/polkit.nix
2024-12-31 13:46:22 +08:00

8 lines
255 B
Nix

{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [ polkit polkit_gnome ];
# polkit-gnome execution is handled by Hyprland exec.nix
# as hyprland do not cooperate with graphical-session.target
services.gnome.gnome-keyring.enable = true;
}