hand gitconfig dotfile

This commit is contained in:
2025-01-11 22:41:21 +00:00
parent b1d59bbb9e
commit 2a017e1523
2 changed files with 22 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
[credential]
helper = /home/worble/.nix-profile/bin/git-credential-manager
credentialStore = secretservice
[credential "https://dev.azure.com"]
useHttpPath = true
[credential "https://git.worble.xyz"]
provider = generic

View File

@@ -21,6 +21,21 @@ in
(nerdfonts.override { fonts = [ "SpaceMono" ]; }) (nerdfonts.override { fonts = [ "SpaceMono" ]; })
]; ];
home.file = {
# # Building this configuration will create a copy of 'dotfiles/screenrc' in
# # the Nix store. Activating the configuration will then make '~/.screenrc' a
# # symlink to the Nix store copy.
# ".screenrc".source = dotfiles/screenrc;
# # You can also set the file content immediately.
# ".gradle/gradle.properties".text = ''
# org.gradle.console=verbose
# org.gradle.daemon.idletimeout=3600000
# '';
".gitconfig".source = ./dotfiles/gitconfig;
};
programs = { programs = {
bash = { bash = {
enable = true; enable = true;