nix-config/shell.nix
2021-01-16 19:47:36 +01:00

8 lines
132 B
Nix

{ pkgs ? import <nixpkgs> { } }:
with (import ./default.nix { inherit pkgs; });
pkgs.mkShell {
buildInputs = [
deploy
];
}