add shell

This commit is contained in:
Luj 2024-04-05 00:33:26 +02:00
parent 31e157e76c
commit a01c02435d

10
shell.nix Normal file
View file

@ -0,0 +1,10 @@
let
inputs = import ./deps;
pkgs = import inputs.nixpkgs { };
nixos-anywhere = pkgs.callPackage "${inputs.nixos-anywhere}/src/default.nix" { };
in
pkgs.mkShell {
nativeBuildInputs = with pkgs; [ colmena npins nixos-anywhere ];
}