nixos-config/sets/1password.nix

21 lines
480 B
Nix
Raw Normal View History

2023-08-30 20:58:52 +00:00
{ pkgs, ... }:
2021-05-30 13:01:17 +00:00
{
2023-04-11 00:55:07 +00:00
programs._1password-gui = {
enable = true;
2023-08-30 20:58:52 +00:00
package = pkgs._1password-gui;
2023-04-11 00:55:07 +00:00
polkitPolicyOwners = [ "artemis" ];
};
2021-05-30 13:01:17 +00:00
services.gnome.gnome-keyring.enable = true;
programs.seahorse.enable = true;
2024-01-17 05:58:13 +00:00
programs.firefox.policies.ExtensionSettings = {
"{25fc87fa-4d31-4fee-b5c1-c32a7844c063}" = {
installation_mode = "normal_installed";
install_url =
"https://c.1password.com/dist/1P/b5x/firefox/beta/latest.xpi";
};
};
2021-05-30 13:01:17 +00:00
}