From 698f571961d256a0efa0cfbd467279cf3a5b6ecb Mon Sep 17 00:00:00 2001 From: Richie Cahill Date: Mon, 17 Feb 2025 11:54:39 -0500 Subject: [PATCH] adding git and python313 to installeriso --- systems/installer/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/systems/installer/default.nix b/systems/installer/default.nix index 05bec6f..348e240 100644 --- a/systems/installer/default.nix +++ b/systems/installer/default.nix @@ -8,7 +8,9 @@ { imports = [ (modulesPath + "/installer/cd-dvd/installation-cd-minimal.nix") ]; - environment.systemPackages = [ + environment.systemPackages = with pkgs; [ + git + python313 inputs.system_tools.packages.x86_64-linux.default ];