From 9bc7be33650770ecdefe8c920693bc23f1e941d2 Mon Sep 17 00:00:00 2001 From: kiana-S Date: Fri, 26 Jul 2024 05:49:13 -0400 Subject: [PATCH] fix: mark config directory as safe for git --- home-manager/tools.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/home-manager/tools.nix b/home-manager/tools.nix index 2d34974..0b4c839 100644 --- a/home-manager/tools.nix +++ b/home-manager/tools.nix @@ -32,6 +32,7 @@ extraConfig = { github.user = "kiana-S"; credential.helper = "store"; + safe.directory = [ "/etc/nixos" ]; git.allowForcePush = true; push.followTags = true; init.defaultBranch = "main";