Alexandre Cavalheiro
186f879b73
As well as move the script to common.nix where we can point the correct binary for the polkit agent
13 lines
218 B
Nix
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
|
|
];
|
|
}
|