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