mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
feat: pulumi, nix-std, ...
This commit is contained in:
parent
d5da15e555
commit
6eeb622a8c
31 changed files with 244 additions and 106 deletions
|
|
@ -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;
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue