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";
};
};
}

View file

@ -8,23 +8,6 @@ let
nrr = import ./packages/nrr.nix { inherit pkgs; };
in
{
programs._1password.enable = true;
programs._1password-gui = {
enable = true;
polkitPolicyOwners = [ "imnyang" ];
};
environment.etc = {
"1password/custom_allowed_browsers" = {
text = ''
microsoft-edge
firefox-devedition
'';
mode = "0755";
};
};
# 시스템 전역 패키지 (데스크탑/개발용)
environment.systemPackages = with pkgs; [
nr
nrr