15 lines
184 B
Nix
15 lines
184 B
Nix
{
|
|
config,
|
|
...
|
|
}:
|
|
|
|
{
|
|
programs = {
|
|
_1password.enable = true;
|
|
_1password-gui = {
|
|
enable = true;
|
|
polkitPolicyOwners = [ config.hostSpec.username ];
|
|
};
|
|
};
|
|
}
|