add shell

This commit is contained in:
Julien Malka 2024-04-05 00:33:26 +02:00
parent 2da2c4a8ff
commit 0ecb4454de
Signed by: Luj
GPG key ID: 6FC74C847011FD83

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 ];
}