diff options
author | Yusuf Bera Ertan | 2023-02-25 04:06:30 +0000 |
---|---|---|
committer | Yusuf Bera Ertan | 2023-02-25 04:06:30 +0000 |
commit | 309735aa2d9516a734165ee066f2c9a080f9849a (patch) | |
tree | 57e38d320085d4d5fd7746094c260179ec41134f /flake.nix | |
parent | e5af0f1d49547295be796a600c0841135f331618 (diff) |
build(nix): fix devshell
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -120,9 +120,11 @@ else pkgs.clangStdenv; rustFlagsEnv = if stdenv.isLinux - then "$RUSTFLAGS\" -C link-arg=-fuse-ld=lld -C target-cpu=native -Clink-arg=-Wl,--no-rosegment\"" + then ''$RUSTFLAGS -C link-arg=-fuse-ld=lld -C target-cpu=native -Clink-arg=-Wl,--no-rosegment'' else "$RUSTFLAGS"; in { + # by default NCI adds rust-analyzer component, but helix toolchain doesn't have rust-analyzer + nci.toolchains.shell.components = ["rust-src" "rustfmt" "clippy"]; nci.projects."helix-project".relPath = ""; nci.crates."helix-term" = { overrides = { |