dotfiles/shell.nix

14 lines
124 B
Nix
Raw Normal View History

2021-08-11 21:43:30 +02:00
{ pkgs ? import <nixpkgs> {} }:
with pkgs;
mkShell {
buildInputs = [
stow
];
shellHook = ''
stow .
'';
}