Getting started with 1Password for your growing team, or refining your setup? Our Secured Success quickstart guide is for you.
Forum Discussion
eraserhd
6 months agoNew Contributor
NixOS firefox/CLI integration issues
So I have firefox, the plugin, the 1password-gui and 1password-cli installed on linux. I have browser integration enabled and CLI integration enabled, but neither of them can connect. 14:53:21 1 jf...
- 6 months ago
Thanks! So it seems the permissions requirements for the binaries means that it requires more than just installing the Nix packages. In my config, I had to put:
config = { nixpkgs.config.allowUnfree = true; programs._1password.enable = true; programs._1password-gui.enable = true; };
Instead of:
nixpkgs.config.allowUnfree = true; environment.systemPackages = with pkgs; [ _1password-cli _1password-gui ];
Everything now works for me.
eraserhd
6 months agoNew Contributor
Thanks! So it seems the permissions requirements for the binaries means that it requires more than just installing the Nix packages. In my config, I had to put:
config = {
nixpkgs.config.allowUnfree = true;
programs._1password.enable = true;
programs._1password-gui.enable = true;
};
Instead of:
nixpkgs.config.allowUnfree = true;
environment.systemPackages = with pkgs; [
_1password-cli
_1password-gui
];
Everything now works for me.
1P_Dave
Moderator
6 months agoI'm glad that you were able to resolve the issue, thanks for sharing with the community. 🙂
-Dave