Added gpg
This commit is contained in:
parent
c98975cadc
commit
1f71f4b3b9
1 changed files with 16 additions and 0 deletions
|
|
@ -10,6 +10,7 @@
|
||||||
# Utilities
|
# Utilities
|
||||||
neovim
|
neovim
|
||||||
tmux
|
tmux
|
||||||
|
gpg
|
||||||
zip
|
zip
|
||||||
xz
|
xz
|
||||||
unzip
|
unzip
|
||||||
|
|
@ -34,6 +35,21 @@
|
||||||
ethtool
|
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 = {
|
programs.git = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue