mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-04-26 00:18:28 +02:00
git and gpg config
This commit is contained in:
parent
79c06a749a
commit
06ab8644cd
4 changed files with 22 additions and 2 deletions
14
users/rouven/modules/gpg/default.nix
Normal file
14
users/rouven/modules/gpg/default.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{ config, ... }:
|
||||
{
|
||||
programs.gpg = {
|
||||
enable = true;
|
||||
mutableKeys = true;
|
||||
publicKeys = [
|
||||
{
|
||||
source = ../../../../keys/pgp/rouven.asc;
|
||||
trust = 5;
|
||||
}
|
||||
];
|
||||
scdaemonSettings = { disable-ccid = true; };
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue