mirror of
https://github.com/srid/nixos-config.git
synced 2025-12-27 15:54:58 +08:00
11 lines
372 B
Nix
11 lines
372 B
Nix
# https://nixos.wiki/wiki/1Password
|
|
{
|
|
programs._1password.enable = true;
|
|
programs._1password-gui = {
|
|
enable = true;
|
|
# Certain features, including CLI integration and system authentication support,
|
|
# require enabling PolKit integration on some desktop environments (e.g. Plasma).
|
|
polkitPolicyOwners = [ "srid" ];
|
|
};
|
|
security.polkit.enable = true;
|
|
}
|