diff options
| author | Franck Cuny <franck@fcuny.net> | 2025-07-29 20:21:12 -0700 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2025-07-29 20:22:11 -0700 |
| commit | ff85dcdcfe99c7043d039170570661a109098f5f (patch) | |
| tree | 3ed324889a13252e8566e84cd0e0f0377dbe05da /users/programs/onepassword.nix | |
| parent | correct syntax for imports (diff) | |
| download | infra-ff85dcdcfe99c7043d039170570661a109098f5f.tar.gz | |
add a home-manager module for 1password
The module takes care of configuring the 1password SSH agent.
Diffstat (limited to '')
| -rw-r--r-- | users/programs/onepassword.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/users/programs/onepassword.nix b/users/programs/onepassword.nix new file mode 100644 index 0000000..f364a9e --- /dev/null +++ b/users/programs/onepassword.nix @@ -0,0 +1,9 @@ +{ ... }: +{ + programs.onepassword = { + enable = true; + sshKeys = [ + { account = "my.1password.com"; } # All keys from personal account + ]; + }; +} |
