dotfiles/shell.nix

14 lines
124 B
Nix

{ pkgs ? import <nixpkgs> {} }:
with pkgs;
mkShell {
buildInputs = [
stow
];
shellHook = ''
stow .
'';
}