dots/modules/applications/1password.nix
Nico 32198de640
applications: install 1password properly on linux systems
use the option instead of the package. allows the use of system
authentication to unlock 1password.
2025-06-29 22:09:38 +10:00

9 lines
149 B
Nix

{ config, ...}:
{
programs._1password.enable = true;
programs._1password-gui = {
enable = true;
polkitPolicyOwners = [ "nico" ];
};
}