{ pkgs ? import <nixpkgs> {} }:

with pkgs;

mkShell {
  buildInputs = [
    stow
  ];

  shellHook = ''
    stow .
  '';
}