14 lines
124 B
Nix
14 lines
124 B
Nix
|
{ pkgs ? import <nixpkgs> {} }:
|
||
|
|
||
|
with pkgs;
|
||
|
|
||
|
mkShell {
|
||
|
buildInputs = [
|
||
|
stow
|
||
|
];
|
||
|
|
||
|
shellHook = ''
|
||
|
stow .
|
||
|
'';
|
||
|
}
|