dotfiles/modules/common/applications/1password.nix

31 lines
1015 B
Nix
Raw Normal View History

{ config, pkgs, lib, ... }: {
2022-04-29 02:43:50 +00:00
2022-12-21 21:18:03 +00:00
options = {
_1password = {
2022-12-21 21:18:03 +00:00
enable = lib.mkEnableOption {
description = "Enable 1Password.";
default = false;
};
2022-04-29 02:43:50 +00:00
};
};
2022-06-14 03:43:49 +00:00
2024-01-25 02:52:33 +00:00
config = lib.mkIf (config.gui.enable && config._1password.enable) {
unfreePackages = [ "1password" "_1password-gui" "1password-cli" ];
home-manager.users.${config.user} = {
home.packages = with pkgs; [ _1password-gui ];
2022-12-21 21:18:03 +00:00
};
2024-01-25 02:52:33 +00:00
# https://1password.community/discussion/135462/firefox-extension-does-not-connect-to-linux-app
2024-01-25 12:55:31 +00:00
# On Mac, does not apply: https://1password.community/discussion/142794/app-and-browser-integration
# However, the button doesn't work either:
# https://1password.community/discussion/140735/extending-support-for-trusted-web-browsers
2024-01-25 02:52:33 +00:00
environment.etc."1password/custom_allowed_browsers".text = ''
2024-01-25 12:55:31 +00:00
${
config.home-manager.users.${config.user}.programs.firefox.package
}/Applications/Firefox.app/Contents/MacOS/firefox
2024-01-25 02:52:33 +00:00
firefox
'';
};
2022-04-29 02:43:50 +00:00
}