reorg
This commit is contained in:
10
home-manager/git.nix
Normal file
10
home-manager/git.nix
Normal file
@@ -0,0 +1,10 @@
|
||||
{ repoPath, ... }:
|
||||
{
|
||||
programs.git = {
|
||||
enable = true;
|
||||
extraConfig.safe.directory = "${repoPath}";
|
||||
extraConfig.credential.helper = "store --file ~/.git-credentials";
|
||||
userName = "John Lancaster";
|
||||
userEmail = "32917998+jsl12@users.noreply.github.com";
|
||||
};
|
||||
}
|
||||
9
home-manager/home.nix
Normal file
9
home-manager/home.nix
Normal file
@@ -0,0 +1,9 @@
|
||||
{ user, repoPath, ... }:
|
||||
{
|
||||
programs.home-manager.enable = true;
|
||||
home = {
|
||||
stateVersion = "24.05";
|
||||
username = "${user}";
|
||||
homeDirectory = "${repoPath}";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user