Add shell.nix

This commit is contained in:
coolneng 2021-08-11 20:43:30 +01:00
parent 7fee6644f7
commit 219932b3a2
Signed by: coolneng
GPG Key ID: 9893DA236405AF57
1 changed files with 13 additions and 0 deletions

13
shell.nix Normal file
View File

@ -0,0 +1,13 @@
{ pkgs ? import <nixpkgs> {} }:
with pkgs;
mkShell {
buildInputs = [
stow
];
shellHook = ''
stow .
'';
}