diff options
| author | Franck Cuny <fcuny@roblox.com> | 2025-08-21 17:46:28 -0700 |
|---|---|---|
| committer | Franck Cuny <fcuny@roblox.com> | 2025-08-21 17:46:28 -0700 |
| commit | c192c1f2ad4ecb4058c231dc455fbfc738917bcd (patch) | |
| tree | f5b3b97fa407b82bd983677c73fbb801be8389f6 /home/programs/onepassword.nix | |
| parent | initial configuration for firefox (diff) | |
| download | infra-c192c1f2ad4ecb4058c231dc455fbfc738917bcd.tar.gz | |
split-up firefox configuration
Ensure we install the bin package, so that we can use the 1password
extension (we need a signed binary for that).
Diffstat (limited to '')
| -rw-r--r-- | home/programs/onepassword.nix | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/home/programs/onepassword.nix b/home/programs/onepassword.nix index f364a9e..6f7b7f5 100644 --- a/home/programs/onepassword.nix +++ b/home/programs/onepassword.nix @@ -1,4 +1,4 @@ -{ ... }: +{ pkgs, ... }: { programs.onepassword = { enable = true; @@ -6,4 +6,9 @@ { account = "my.1password.com"; } # All keys from personal account ]; }; + + # install the extension for firefox + programs.firefox.profiles.franck.extensions.packages = [ + pkgs.nur.repos.rycee.firefox-addons.onepassword-password-manager + ]; } |
