Add gpg and ssh settings (home-manager)
This commit is contained in:
parent
06e6ff5e66
commit
e35cd83598
4 changed files with 73 additions and 0 deletions
13
users/functionalhacker/programs/gpg.nix
Normal file
13
users/functionalhacker/programs/gpg.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
programs.gpg = {
|
||||
enable = true;
|
||||
publicKeys = [
|
||||
{
|
||||
source = ../pubkey.asc;
|
||||
trust = 5;
|
||||
}
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue