aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xconfig.yaml2
-rw-r--r--shell.nix7
2 files changed, 8 insertions, 1 deletions
diff --git a/config.yaml b/config.yaml
index 576a6c2..db3ca37 100755
--- a/config.yaml
+++ b/config.yaml
@@ -5,7 +5,7 @@ language: "en-us"
5 5
6# Code highlighting. 6# Code highlighting.
7# https://swapoff.org/chroma/playground/ 7# https://swapoff.org/chroma/playground/
8highlighting: "vs" 8highlighting: abap
9 9
10# Minifies output HTML (including inline CSS, JS). 10# Minifies output HTML (including inline CSS, JS).
11minify: true 11minify: true
diff --git a/shell.nix b/shell.nix
new file mode 100644
index 0000000..a40e49c
--- /dev/null
+++ b/shell.nix
@@ -0,0 +1,7 @@
1{ pkgs ? import <nixpkgs> {} }:
2 pkgs.mkShell {
3 nativeBuildInputs = with pkgs.buildPackages; [
4 gnumake
5 helix
6 ];
7}