feat: pulumi, nix-std, ...

This commit is contained in:
Kat Inskip 2023-01-18 13:35:31 -05:00
parent d5da15e555
commit 6eeb622a8c
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
31 changed files with 244 additions and 106 deletions

View file

@ -2,9 +2,7 @@
pkgs,
tree,
...
}: let
kat = import tree.kat.user.data;
in {
}: {
home.packages = with pkgs; [
gitAndTools.git-remote-gcrypt
git-crypt
@ -12,7 +10,7 @@ in {
];
programs.git = {
inherit (kat) userName userEmail;
inherit (tree.kat.user.data) userName userEmail;
package = pkgs.gitAndTools.gitFull;
enable = true;
extraConfig = {
@ -25,7 +23,7 @@ in {
};
};
signing = {
inherit (kat) key;
inherit (tree.kat.user.data) key;
signByDefault = true;
};
};