45 lines
1.2 KiB
Nix
45 lines
1.2 KiB
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.1.0.tar.gz";
|
|
devenv.url = "github:cachix/devenv";
|
|
};
|
|
|
|
nixConfig = {
|
|
extra-trusted-public-keys = "devenv.cachix.org-1:w1cLUi8dv3hnoSPGAuibQv+f9TZLr6cv/Hm9XgU50cw=";
|
|
extra-substituters = "https://devenv.cachix.org";
|
|
};
|
|
|
|
outputs = {
|
|
self,
|
|
nixpkgs,
|
|
devenv,
|
|
systems,
|
|
...
|
|
} @ inputs: let
|
|
forEachSystem = nixpkgs.lib.genAttrs (import systems);
|
|
in {
|
|
devShells =
|
|
forEachSystem
|
|
(system: let
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
in {
|
|
default = devenv.lib.mkShell {
|
|
inherit inputs pkgs;
|
|
modules = [
|
|
{
|
|
# https://devenv.sh/reference/options/
|
|
packages = [pkgs.hello pkgs.delta pkgs.difftastic pkgs.alejandra pkgs.nodePackages.bash-language-server pkgs.shellcheck pkgs.shfmt];
|
|
|
|
pre-commit.hooks = {
|
|
alejandra.enable = true;
|
|
black.enable = true;
|
|
shellcheck.enable = true;
|
|
shfmt.enable = true;
|
|
taplo.enable = true;
|
|
};
|
|
}
|
|
];
|
|
};
|
|
});
|
|
};
|
|
}
|