This commit is contained in:
암냥 2026-07-25 06:27:46 +09:00
commit c40b87be20
No known key found for this signature in database
18 changed files with 362 additions and 184 deletions

View file

@ -0,0 +1,17 @@
{ config, pkgs, ... }:
{
programs._1password.enable = true;
programs._1password-gui = {
enable = true;
polkitPolicyOwners = [ "imnyang" ];
};
environment.etc = {
"1password/custom_allowed_browsers" = {
text = ''
firefox-devedition
'';
mode = "0755";
};
};
}