diff options
| author | Skullheadx <admonty1@gmail.com> | 2026-06-28 23:56:06 -0400 |
|---|---|---|
| committer | Skullheadx <admonty1@gmail.com> | 2026-06-28 23:56:06 -0400 |
| commit | 5fdb448ce35d3198d3d1fc64f667d46dad9189fe (patch) | |
| tree | 12f2b432ec80bbf08500bfccd49e3779861c929d /hosts/bear | |
| parent | ssh config for darwin (diff) | |
| download | nixos-5fdb448ce35d3198d3d1fc64f667d46dad9189fe.tar.gz nixos-5fdb448ce35d3198d3d1fc64f667d46dad9189fe.tar.bz2 nixos-5fdb448ce35d3198d3d1fc64f667d46dad9189fe.zip | |
add pass and gnupg
Diffstat (limited to 'hosts/bear')
| -rw-r--r-- | hosts/bear/configuration.nix | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/hosts/bear/configuration.nix b/hosts/bear/configuration.nix index 33fac99..ef46691 100644 --- a/hosts/bear/configuration.nix +++ b/hosts/bear/configuration.nix @@ -18,6 +18,10 @@ customNeovim.neovim senpai mpv + pass + passExtensions.pass-otp + passExtensions.pass-update + passExtensions.pass-import ]; programs.ssh = { @@ -58,6 +62,18 @@ ''; }; + programs.gnupg = { + agent = { + enable = true; + enableSSHSupport = true; + # enableBrowserSocket = true; + # settings = { + # default-cache-ttl = 86400; + # max-cache-ttl = 604800; + # }; + }; + }; + homebrew = { enable = true; user = "andrewmontgomery"; |
