nixos-config/modules/nixos/linux/gui/_1password.nix
Sridhar Ratnakumar 4bef4f2d3d fmt
2024-10-22 18:07:49 -04:00

19 lines
619 B
Nix

# https://nixos.wiki/wiki/1Password
{ lib, ... }:
{
# Enable the unfree 1Password packages
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
"1password-gui"
"1password"
];
# Alternatively, you could also just allow all unfree packages
# nixpkgs.config.allowUnfree = true;
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" ];
};
}