Fix flake.nix#nixos

Add git to packages
This commit is contained in:
Joshua Yuen 2025-07-29 23:43:55 -04:00
parent 34dad6bd15
commit 510a82c2e5
Signed by: josh
GPG Key ID: 502720BC22ED411C
2 changed files with 8 additions and 3 deletions

View File

@ -22,9 +22,14 @@
nixosConfigurations = {
nixos = nixpkgs.lib.nixosSystem {
inherit system;
specialArgs = { inherit inputs; };
specialArgs = {
inherit inputs;
inherit host;
inherit profile;
inherit username;
};
modules = [
./configuration.nix
./hosts/${host}
];
};

View File

@ -9,6 +9,6 @@
};
environment.systemPackages = with pkgs; [
git
];
}