null-ls: add beautysh and shellcheck

This commit is contained in:
Pedro Alves 2022-11-15 11:36:42 +00:00
parent 4f08c8a4bf
commit 4c36cdc2e7
4 changed files with 156 additions and 7 deletions

View file

@ -6,6 +6,9 @@
inputs.nmdSrc.url = "gitlab:rycee/nmd";
inputs.nmdSrc.flake = false;
inputs.beautysh.url = "github:lovesegfault/beautysh";
inputs.beautysh.inputs.nixpkgs.follows = "nixpkgs";
outputs = { self, nixpkgs, nmdSrc, flake-utils, ... }@inputs:
with nixpkgs.lib;
with builtins;
@ -22,6 +25,7 @@
pkgs = mkForce pkgs;
inherit (pkgs) lib;
helpers = import ./plugins/helpers.nix { inherit (pkgs) lib; };
inputs = inputs;
};
};
})