From 6ac6d3f89d92ea8eff6144bfac4d814a14ee82e3 Mon Sep 17 00:00:00 2001 From: Jakob Lechner Date: Thu, 17 Jul 2025 03:13:52 +0200 Subject: [PATCH] Add git as system package This should fix error: executing 'git': No such file or directory The error occurs sometimes for flake inputs. --- modules/nix.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/nix.nix b/modules/nix.nix index 0be49a4..eb8f9b4 100644 --- a/modules/nix.nix +++ b/modules/nix.nix @@ -52,5 +52,6 @@ environment.systemPackages = with pkgs; [ cached-nix-shell + git ]; }