feat(cheetah): add zls
This commit is contained in:
parent
ef283b9c1f
commit
9032738351
2 changed files with 8 additions and 0 deletions
|
@ -39,6 +39,11 @@
|
|||
url = "github:mitchellh/zig-overlay";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
zls-overlay = {
|
||||
url = "github:zigtools/zls";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
};
|
||||
|
||||
outputs = { self
|
||||
|
@ -49,6 +54,7 @@
|
|||
# , nix-colors
|
||||
, neovim-nightly-overlay
|
||||
, zig-overlay
|
||||
, zls-overlay
|
||||
, ...
|
||||
} @ inputs:
|
||||
let
|
||||
|
|
|
@ -52,12 +52,14 @@
|
|||
|
||||
# Zig
|
||||
zigpkgs.master
|
||||
inputs.zls-overlay.packages.aarch64-linux.default
|
||||
];
|
||||
|
||||
nixpkgs = {
|
||||
overlays = [
|
||||
inputs.neovim-nightly-overlay.overlay
|
||||
inputs.zig-overlay.overlays.default
|
||||
# inputs.zls-overlay.???
|
||||
];
|
||||
|
||||
config.allowUnfree = true;
|
||||
|
|
Loading…
Reference in a new issue