mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2026-04-14 21:29:12 +02:00
13 lines
242 B
Nix
13 lines
242 B
Nix
{ name, writeShellApplication, ... }:
|
|
writeShellApplication {
|
|
inherit name;
|
|
text = ''
|
|
set -euo pipefail
|
|
|
|
if [ ! -d "$(pwd)/.git" ]; then
|
|
git init
|
|
fi
|
|
nix flake init --template "$FLAKE"#"$1"
|
|
direnv allow
|
|
'';
|
|
}
|