revamp of nix organization
This commit is contained in:
parent
01a48ac956
commit
4a4014bf59
20 changed files with 369 additions and 129 deletions
22
nix/home/programs/git/default.nix
Normal file
22
nix/home/programs/git/default.nix
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
let
|
||||
in
|
||||
{
|
||||
programs.git = {
|
||||
enable = true;
|
||||
userName = "Haak Saxberg";
|
||||
userEmail = "haak.erling@gmail.com";
|
||||
ignores = [
|
||||
".idea/"
|
||||
".direnv/"
|
||||
".git-plans/"
|
||||
".envrc"
|
||||
".tools-info"
|
||||
"*~"
|
||||
"*.swp"
|
||||
".yardoc/"
|
||||
"doc/"
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue