nix-conf/system/modules/polkit.nix
2025-01-03 20:08:29 +08:00

11 lines
265 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;
}