This commit is contained in:
nora 2024-04-07 15:26:15 +02:00
commit bac720c512
11 changed files with 2115 additions and 0 deletions

8
init-nix Normal file
View file

@ -0,0 +1,8 @@
#!/usr/bin/env bash
echo "use nix" > .envrc
cat > shell.nix <<EOF
{ pkgs ? import <nixpkgs> {} }: pkgs.mkShell {
packages = [];
}
EOF