Initial commit

This commit is contained in:
Asdam9
2026-04-14 22:48:18 +02:00
parent dea140ace7
commit 827124afdb
35 changed files with 3999 additions and 0 deletions

22
modules/features/git.nix Normal file
View File

@@ -0,0 +1,22 @@
{ inputs, lib, self, ... }: {
flake.nixosModules.git = { pkgs, ... }: {
imports = [
self.nixosModules.gnupg
];
programs.git = {
enable = true;
config.user = {
name = "Asdam9";
};
};
};
flake.nixosModules.gnupg = { pkgs, ... }: {
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
pinentryPackage = pkgs.pinentry-rofi;
};
};
}