Files
dotfiles/config/nixos/packages/workstation/1password.nix
Menno van Leeuwen 9236bf36f1
All checks were successful
Nix Format Check / check-format (push) Successful in 39s
revert 1password to nixos only, we install 1password on fedora by hand
2025-01-02 02:02:04 +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";
};
};
}