tangled
alpha
login
or
join now
jensroemer.com
/
site
forked from
tangled.org/site
0
fork
atom
engineering blog at https://blog.tangled.sh
0
fork
atom
overview
issues
pulls
pipelines
add wrangler to nix
anirudh.fi
1 year ago
286e40d7
7132ea53
verified
This commit was signed with the committer's
known signature
.
anirudh.fi
SSH Key Fingerprint:
SHA256:cz35vdbiWEzCNEfuL9fMC2JVIhtXavXBHrRjv8gxpAk=
+9
-8
1 changed file
expand all
collapse all
unified
split
flake.nix
+9
-8
flake.nix
···
2
2
description = "site";
3
3
4
4
inputs = {
5
5
-
nixpkgs.url = "github:nixos/nixpkgs";
6
6
-
vite.url = "github:icyphox/go-vite";
7
7
-
ia-fonts-src = {
8
8
-
url = "github:iaolo/iA-Fonts";
9
9
-
flake = false;
10
10
-
};
5
5
+
nixpkgs.url = "github:nixos/nixpkgs";
6
6
+
vite.url = "github:icyphox/go-vite";
7
7
+
ia-fonts-src = {
8
8
+
url = "github:iaolo/iA-Fonts";
9
9
+
flake = false;
10
10
+
};
11
11
};
12
12
13
13
outputs =
···
40
40
pkgs.gnumake
41
41
pkgs.entr
42
42
pkgs.tailwindcss
43
43
+
pkgs.wrangler
43
44
];
44
45
shellHook = ''
45
45
-
cp -f ${ia-fonts-src}/"iA Writer Quattro"/Static/*.ttf static/fonts/
46
46
-
cp -f ${ia-fonts-src}/"iA Writer Mono"/Static/*.ttf static/fonts/
46
46
+
cp -f ${ia-fonts-src}/"iA Writer Quattro"/Static/*.ttf static/fonts/
47
47
+
cp -f ${ia-fonts-src}/"iA Writer Mono"/Static/*.ttf static/fonts/
47
48
'';
48
49
};
49
50
}