renamed programms to programs

This commit is contained in:
Sebastian Moser
2023-10-29 10:29:04 +00:00
parent c2705c1feb
commit 30635d9bf1
11 changed files with 18 additions and 16 deletions

11
common/programs/git.nix Normal file
View File

@@ -0,0 +1,11 @@
{ ... }:
{
home-manager.users.me.programs.git = {
enable = true;
userName = "Sebastian Moser";
userEmail = "me@c2vi.dev";
extraConfig.core.editor = "nvim";
extraConfig.core.excludesfile = "~/.config/git/gitignore";
};
}