From 2963439698768404ce45feb34c815d6f763704b8 Mon Sep 17 00:00:00 2001 From: Alexander Date: Thu, 5 Feb 2026 15:56:51 +0100 Subject: [PATCH] Add git to susano --- machines/susano/main/home.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/machines/susano/main/home.nix b/machines/susano/main/home.nix index 9a2c708..81fc7ba 100644 --- a/machines/susano/main/home.nix +++ b/machines/susano/main/home.nix @@ -11,6 +11,11 @@ in { stateVersion = "25.05"; username = username; homeDirectory = "/home/${username}"; + + packages = with pkgs; [ + eza + git + ]; }; dov = { @@ -28,8 +33,4 @@ in { }; programs.home-manager.enable = true; - - home.packages = with pkgs; [ - eza - ]; }