mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-01-18 19:23:39 -05:00
8 lines
185 B
Bash
8 lines
185 B
Bash
|
if [ ! -e flake.nix ]; then
|
||
|
nix flake new -t github:nix-community/nix-direnv .
|
||
|
elif [ ! -e .envrc ]; then
|
||
|
echo "use flake" > .envrc
|
||
|
direnv allow
|
||
|
fi
|
||
|
${EDITOR:-vim} flake.nix
|