diff options
author | Blaž Hrastnik | 2022-02-15 01:11:59 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2022-02-15 01:12:37 +0000 |
commit | 8a7aec641408477ff62dd56f4f74337de6a7ab80 (patch) | |
tree | c061d82165504cbe6dd8c585ccdd3c4129792e56 /flake.nix | |
parent | 225484c26c4e19c5c803709c4565458205089a9b (diff) |
fix: nix flake build
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -21,7 +21,8 @@ defaultOutputs = { app = "hx"; package = "helix"; }; overrides = { crateOverrides = common: _: rec { - # link languages and theme toml files since helix-view expects them + # link languages and theme toml files since helix-core/helix-view expects them + helix-core = _: { preConfigure = "ln -s ${common.root}/{languages.toml,theme.toml,base16_theme.toml} .."; }; helix-view = _: { preConfigure = "ln -s ${common.root}/{languages.toml,theme.toml,base16_theme.toml} .."; }; helix-syntax = prev: { src = |