From e4eee1b31a7bdfceaacc412d4e26d3f2b560ea6a Mon Sep 17 00:00:00 2001 From: Joshua Yuen Date: Tue, 29 Jul 2025 23:43:55 -0400 Subject: [PATCH] Fix flake.nix#nixos Add git to packages --- flake.nix | 10 ++++++++-- modules/core/packages.nix | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index 1eca947..d5d6603 100644 --- a/flake.nix +++ b/flake.nix @@ -22,9 +22,15 @@ nixosConfigurations = { nixos = nixpkgs.lib.nixosSystem { inherit system; - specialArgs = { inherit inputs; }; + specialArgs = { + inherit inputs; + inherit host; + inherit profile; + inherit username; + inherit hashedPassword; + }; modules = [ - ./configuration.nix + ./hosts/${host} ]; }; diff --git a/modules/core/packages.nix b/modules/core/packages.nix index e089189..206e3f1 100644 --- a/modules/core/packages.nix +++ b/modules/core/packages.nix @@ -9,6 +9,6 @@ }; environment.systemPackages = with pkgs; [ - + git ]; } \ No newline at end of file