From 335d44dc4d6a2124ef49a1f2c0a3a7a01c7e9516 Mon Sep 17 00:00:00 2001 From: panotaka Date: Tue, 21 Nov 2023 22:50:13 -0400 Subject: [PATCH] Add git to systemPackages --- modules/system.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/system.nix b/modules/system.nix index cefc74f..47dc61b 100644 --- a/modules/system.nix +++ b/modules/system.nix @@ -24,6 +24,10 @@ # Allow unfree packages nixpkgs.config.allowUnfree = true; + environment.systemPackages = with pkgs; [ + git + ]; + # Define a user account. Don't forget to set a password with ‘passwd’. users.users.panotaka = { isNormalUser = true;