mirror of
https://github.com/thilobillerbeck/dotfiles.git
synced 2024-11-09 19:19:23 +01:00
21 lines
No EOL
253 B
Bash
21 lines
No EOL
253 B
Bash
#/usr/bin/env bash
|
|
|
|
nixshell=$(cat << EOF
|
|
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs; [ ];
|
|
shellHook = ''
|
|
|
|
'';
|
|
}
|
|
EOF
|
|
)
|
|
|
|
envrc=$(cat << EOF
|
|
use nix
|
|
EOF
|
|
)
|
|
|
|
echo $nixshell > shell.nix
|
|
echo $envrc > .envrc |