helix: wrapped helix, added helix cachix
This commit is contained in:
parent
a332676958
commit
1f800c2091
5 changed files with 45 additions and 23 deletions
35
parts/pkgs/extraPackages/helix-wrapped.nix
Normal file
35
parts/pkgs/extraPackages/helix-wrapped.nix
Normal file
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
inputs',
|
||||
inputs,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}: let
|
||||
helix-wrapped = inputs.wrapper-manager.lib.build {
|
||||
inherit pkgs;
|
||||
modules = [
|
||||
{
|
||||
wrappers.nushell-wrapped = {
|
||||
basePackage = inputs'.helix.packages.default;
|
||||
pathAdd = with pkgs; [
|
||||
# C/C++
|
||||
clang-tools
|
||||
|
||||
# Markdown
|
||||
marksman
|
||||
|
||||
# Nix
|
||||
nil
|
||||
|
||||
# Bash
|
||||
bash-language-server
|
||||
|
||||
# Shell
|
||||
shellcheck
|
||||
];
|
||||
};
|
||||
}
|
||||
];
|
||||
};
|
||||
in
|
||||
helix-wrapped
|
Loading…
Add table
Add a link
Reference in a new issue