snowfield/shell.nix

11 lines
239 B
Nix
Raw Normal View History

2024-04-05 00:33:26 +02:00
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 ];
}