11 lines
202 B
Nix
Raw Normal View History

2023-11-04 02:28:27 +01:00
{ pkgs, ... }: {
security.polkit.enable = true;
security.pam.services.swaylock = {
text = ''
auth include login
'';
};
environment.systemPackages = with pkgs; [ polkit_gnome ];
}