summaryrefslogtreecommitdiffstats
path: root/.bin/chiaki
diff options
context:
space:
mode:
Diffstat (limited to '.bin/chiaki')
-rwxr-xr-x.bin/chiaki21
1 files changed, 0 insertions, 21 deletions
diff --git a/.bin/chiaki b/.bin/chiaki
deleted file mode 100755
index 5fa6547..0000000
--- a/.bin/chiaki
+++ /dev/null
@@ -1,21 +0,0 @@
1#!/bin/sh
2
3CHIAKI_SHELL=/tmp/.chiaki.nix
4
5cat <<EOF > $CHIAKI_SHELL
6let
7 nixgl = import (fetchTarball https://github.com/guibou/nixGL/archive/main.tar.gz) { };
8in
9{ nixpkgs ? import <nixpkgs> {} }:
10with nixpkgs; mkShell {
11 buildInputs = [
12 chiaki
13 nixgl.auto.nixGLDefault
14 ];
15 shellHook = ''
16 nixGL chiaki && exit;
17 '';
18}
19EOF
20
21nix-shell $CHIAKI_SHELL