configure git with home manager
This commit is contained in:
parent
45c0844604
commit
409109229f
4 changed files with 10 additions and 29 deletions
1
conf.yml
1
conf.yml
|
@ -12,7 +12,6 @@
|
||||||
~/.config/kitty:
|
~/.config/kitty:
|
||||||
~/.config/aerc:
|
~/.config/aerc:
|
||||||
~/.config/mako:
|
~/.config/mako:
|
||||||
~/.config/git:
|
|
||||||
~/.config/waybar:
|
~/.config/waybar:
|
||||||
~/.config/i3status-rust:
|
~/.config/i3status-rust:
|
||||||
~/.config/rofi:
|
~/.config/rofi:
|
||||||
|
|
25
git/config
25
git/config
|
@ -1,25 +0,0 @@
|
||||||
[init]
|
|
||||||
defaultBranch = main
|
|
||||||
|
|
||||||
[user]
|
|
||||||
email = hi@cything.io
|
|
||||||
name = cy
|
|
||||||
signingkey = 1200FBE36C2ADE2E
|
|
||||||
|
|
||||||
[core]
|
|
||||||
pager = delta
|
|
||||||
|
|
||||||
[interactive]
|
|
||||||
diffFilter = delta --color-only
|
|
||||||
|
|
||||||
[delta]
|
|
||||||
navigate = true
|
|
||||||
|
|
||||||
[merge]
|
|
||||||
conflictstype = diff3
|
|
||||||
|
|
||||||
[diff]
|
|
||||||
colorMoved = default
|
|
||||||
|
|
||||||
[credential]
|
|
||||||
helper = store
|
|
6
nix/flake.lock
generated
6
nix/flake.lock
generated
|
@ -7,11 +7,11 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1733951607,
|
"lastModified": 1734043726,
|
||||||
"narHash": "sha256-CN6q6iCzxI1gkNyk4xLdwaMKi10r7n+aJkRzWj8PXwQ=",
|
"narHash": "sha256-e9YAMReFV1fDPcZLFC2pa4k/8TloSXeX0z2VysNMAoA=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "home-manager",
|
"repo": "home-manager",
|
||||||
"rev": "6e5b2d9e8014b5572e3367937a329e7053458d34",
|
"rev": "3066cc58f552421a2c5414e78407fa5603405b1e",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
@ -32,4 +32,11 @@
|
||||||
home.sessionVariables = {
|
home.sessionVariables = {
|
||||||
ANKI_WAYLAND = "1";
|
ANKI_WAYLAND = "1";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
programs.git = {
|
||||||
|
enable = true;
|
||||||
|
userName = "cy";
|
||||||
|
userEmail = "hi@cything.io";
|
||||||
|
delta.enable = true;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue