linuxware/specific/desktop/services/authentication.nix
Alexandre Cavalheiro 186f879b73
feat(authentication): move to kde auth agents and services
As well as move the script to common.nix where we can point the correct
binary for the polkit agent
2024-09-20 11:54:50 -03:00

13 lines
218 B
Nix

{ pkgs, ... }:
{
# Enable polkit,
security.polkit.enable = true;
# Install a keyring service and manager.
environment.systemPackages = with pkgs; [
libsForQt5.kwallet
libsForQt5.kwalletmanager
];
}