tangled
alpha
login
or
join now
fuzzko.neocities.org
/
digital-garden
0
fork
atom
My digital garden
0
fork
atom
overview
issues
pulls
pipelines
Quartz sync: Jan 17, 2026, 3:44 AM
fuzzko.neocities.org
2 months ago
4092d5de
adbbec89
+11
-1
3 changed files
expand all
collapse all
unified
split
.direnv
flake-inputs
gp4xvqds8y5ywaxmd97hr5fvx9ziihb2-source
y5016sjilimb58vnk9qj8ckigqswysr1-source
flake.nix
+1
.direnv/flake-inputs/gp4xvqds8y5ywaxmd97hr5fvx9ziihb2-source
···
1
1
+
/nix/store/gp4xvqds8y5ywaxmd97hr5fvx9ziihb2-source
-1
.direnv/flake-inputs/y5016sjilimb58vnk9qj8ckigqswysr1-source
···
1
1
-
/nix/store/y5016sjilimb58vnk9qj8ckigqswysr1-source
+10
flake.nix
···
25
25
devShells.ci.packages = pkgs: with pkgs; [
26
26
bun
27
27
];
28
28
+
29
29
+
devShells.ci.shellHook = pkgs: with pkgs; ''
30
30
+
bun() {
31
31
+
LD_LIBRARY_PATH="${
32
32
+
lib.makeLibraryPath [
33
33
+
stdenv.cc.cc.lib
34
34
+
]
35
35
+
}" command bun "$@"
36
36
+
}
37
37
+
'';
28
38
};
29
39
}