user/git: set safe directory

This commit is contained in:
LavaDesu 2024-07-02 09:46:05 +10:00
parent 7445e14865
commit 49acaadbf7
Signed by: cilly
GPG key ID: 6500251E087653C9

View file

@ -1,4 +1,4 @@
{ config, ... }: {
{ ... }: {
programs.git = {
enable = true;
userName = "LavaDesu";
@ -9,6 +9,7 @@
};
extraConfig = {
core.abbrev = 11;
safe.directory = "/home/rin/Projects/flakes";
};
};
}