1
0
Fork 0

feat(nix): add nix flakes

Signed-off-by: Lucas Sta Maria <lucas@priime.dev>
This commit is contained in:
Lucas Sta Maria 2024-07-26 21:13:56 -07:00
parent edbd8ce1d2
commit 35e75575f8
No known key found for this signature in database
GPG key ID: F07FB16A826E3B47
7 changed files with 496 additions and 0 deletions

17
nix/hosts/common/home.nix Normal file
View file

@ -0,0 +1,17 @@
{ inputs, configDir, config, pkgs, lib, ... }: {
# Extra $PATH directories
home.sessionPath = [ ];
nixpkgs.config.allowUnfree = true;
programs.git = {
enable = true;
userName = "Lucas Sta Maria";
userEmail = "lucas@priime.dev";
signing = {
signByDefault = true;
key = "2EAF5BA156A36810B057BF61F07FB16A826E3B47";
};
extraConfig = { credential.helper = "store"; };
};
}