gpg: init
This commit is contained in:
parent
780a18f627
commit
dc7fdfb7ea
|
@ -4,6 +4,7 @@
|
||||||
./base-server
|
./base-server
|
||||||
./users
|
./users
|
||||||
./boot.nix
|
./boot.nix
|
||||||
|
./gpg.nix
|
||||||
./home-manager.nix
|
./home-manager.nix
|
||||||
./misc.nix
|
./misc.nix
|
||||||
./nginx.nix
|
./nginx.nix
|
||||||
|
|
8
common/gpg.nix
Normal file
8
common/gpg.nix
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
programs.gnupg.agent = {
|
||||||
|
enable = true;
|
||||||
|
enableSSHSupport = true;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue