bootstrap script in shell

This commit is contained in:
Luj 2024-04-06 02:04:56 +02:00
parent f85f071263
commit c68853252d
3 changed files with 33 additions and 24 deletions

View file

@ -3,9 +3,10 @@ let
pkgs = import inputs.nixpkgs { };
nixos-anywhere = pkgs.callPackage "${inputs.nixos-anywhere}/src/default.nix" { };
agenix = pkgs.callPackage "${inputs.agenix}/pkgs/agenix.nix" { };
bootstrap = import scripts/bootstrap-machine.nix;
in
pkgs.mkShell {
nativeBuildInputs = with pkgs; [ colmena npins nixos-anywhere agenix ];
nativeBuildInputs = with pkgs; [ colmena npins nixos-anywhere agenix bootstrap ];
}