Files
dotfiles/config/home-manager/packages/workstation/1password.nix
Menno van Leeuwen dfff773f7e
All checks were successful
Nix Format Check / check-format (push) Successful in 1m4s
moves various things to home manager
2025-01-02 00:59:22 +01:00

17 lines
269 B
Nix

{ pkgs, pkgs-unstable, ... }:
{
home.packages = [
pkgs-unstable._1password-cli
pkgs-unstable._1password-gui
];
xdg.configFile."1password/custom_allowed_browsers" = {
text = ''
firefox
brave
zen
'';
executable = true;
};
}