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