mirror of https://git.jolheiser.com/dotnix.git
parent
9c2f6a3ea1
commit
ad12bd4623
|
@ -41,6 +41,7 @@
|
||||||
extensions = with pkgs.nur.repos.rycee.firefox-addons; [
|
extensions = with pkgs.nur.repos.rycee.firefox-addons; [
|
||||||
bitwarden
|
bitwarden
|
||||||
clearurls
|
clearurls
|
||||||
|
mailvelope
|
||||||
multi-account-containers
|
multi-account-containers
|
||||||
refined-github
|
refined-github
|
||||||
ublock-origin
|
ublock-origin
|
||||||
|
|
|
@ -2,6 +2,16 @@
|
||||||
key = "0xB853ADA5DA7BBF7A";
|
key = "0xB853ADA5DA7BBF7A";
|
||||||
in {
|
in {
|
||||||
home.packages = with pkgs; [pinentry];
|
home.packages = with pkgs; [pinentry];
|
||||||
|
home.file.".mozilla/native-messaging-hosts/gpgmejson.json" = {
|
||||||
|
enable = true;
|
||||||
|
text = builtins.toJSON {
|
||||||
|
name = "gpgmejson";
|
||||||
|
description = "JavaScript binding for GnuPG";
|
||||||
|
path = pkgs.gpgme.dev + /bin/gpgme-json;
|
||||||
|
type = "stdio";
|
||||||
|
allowed_extensions = ["jid1-AQqSMBYb0a8ADg@jetpack"];
|
||||||
|
};
|
||||||
|
};
|
||||||
programs.gpg = {
|
programs.gpg = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
|
@ -15,6 +25,7 @@ in {
|
||||||
verify-options = "show-uid-validity";
|
verify-options = "show-uid-validity";
|
||||||
with-fingerprint = true;
|
with-fingerprint = true;
|
||||||
with-key-origin = true;
|
with-key-origin = true;
|
||||||
|
keyserver = "hkps://keys.openpgp.org";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
services.gpg-agent = {
|
services.gpg-agent = {
|
||||||
|
|
Loading…
Reference in New Issue