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

43 lines
1.1 KiB
Nix
Raw Permalink Normal View History

2024-04-20 13:42:06 +00:00
{
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) {
2024-04-20 13:42:06 +00:00
unfreePackages = [
"1password"
"_1password-gui"
"1password-cli"
];
2024-01-25 02:52:33 +00:00
home-manager.users.${config.user} = {
2024-04-20 13:42:06 +00:00
home.packages = with pkgs; [
_1password-gui
_1password
];
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
}