Files
dotfiles/config/nixos/packages/workstation/1password.nix
Menno van Leeuwen 498b28fac0
Some checks failed
Nix Format Check / check-format (push) Failing after 39s
refactor: add NixOS configuration files for server and workstation setups
2025-03-04 11:22:51 +01:00

26 lines
457 B
Nix

{ pkgs, pkgs-unstable, ... }:
{
# Enables the 1Password CLI
programs._1password = {
enable = true;
};
# Enables the 1Password desktop app
programs._1password-gui = {
enable = true;
polkitPolicyOwners = [ "menno" ];
package = pkgs-unstable._1password-gui;
};
environment.etc = {
"1password/custom_allowed_browsers" = {
text = ''
firefox
brave
zen
'';
mode = "0755";
};
};
}