Added gpg

This commit is contained in:
Wekuz 2026-01-10 15:23:04 +02:00
parent c98975cadc
commit 1f71f4b3b9
Signed by: Wekuz
GPG key ID: 2E502F2AABD32DF9

View file

@ -10,6 +10,7 @@
# Utilities
neovim
tmux
gpg
zip
xz
unzip
@ -34,6 +35,21 @@
ethtool
];
gpgKey = pkgs.fetchurl {
url = "https://keys.openpgp.org/vks/v1/by-fingerprint/0CCE1200AB5E7B059A22B0D82E502F2AABD32DF9";
sha256 = "";
};
programs.gpg = {
enable = true;
publicKeys.wekuz = [
{
source = "${gpgKey}";
trust = 5;
}
];
};
programs.git = {
enable = true;
settings = {