add gpg program

This commit is contained in:
aditya
2026-05-09 16:18:53 +05:30
parent 77483da6be
commit c5f1543ee6
4 changed files with 18 additions and 7 deletions
+10
View File
@@ -0,0 +1,10 @@
{ ... }:
{
imports = [
./gh.nix
./git.nix
./gpg.nix
./zed.nix
];
}
-4
View File
@@ -9,9 +9,5 @@
email = "dedomil@tuta.io";
};
};
# signing = {
# key = null;
# signByDefault = true;
# };
};
}
+7
View File
@@ -0,0 +1,7 @@
{...}:
{
programs.gpg = {
enable = true;
};
}