build: move all files to private dir

This commit is contained in:
Michael Mandl 2024-07-10 08:09:32 +02:00
parent 6823f37d6b
commit 0cf5c3433e
Signed by: mandlm
GPG key ID: 088ED38F036C7AF2
41 changed files with 2 additions and 2 deletions

View file

@ -1,21 +0,0 @@
{ pkgs, ... }:
{
services.gpg-agent = {
enable = true;
enableZshIntegration = true;
pinentryPackage = pkgs.pinentry-gnome3;
enableSshSupport = true;
sshKeys = [ "1F937AC8F77ED74CE24EAAE79B5601F73C6D115F" ];
};
programs.gpg = {
enable = true;
mutableKeys = true;
mutableTrust = true;
publicKeys = [{
source = ./pubring.asc;
trust = "ultimate";
}];
};
}