add default devShell with nil

Signed-off-by: Magic_RB <magic_rb@redalder.org>
This commit is contained in:
Magic_RB 2023-06-16 16:40:38 +02:00
parent 6189356d7c
commit d53e3072f0
No known key found for this signature in database
GPG key ID: 08D5287CC5DDCA0E

View file

@ -123,6 +123,15 @@
nixinate = (inputs.nixinate.nixinate.${system} self).nixinate;
});
perSystem = { system, pkgs, ... }:
{
devShells.default = pkgs.mkShell {
nativeBuildInputs = with pkgs; [
nil
];
};
};
flake.patches = {
hashicorp-nomad.revert-change-consul-si-tokens-to-be-local = patches/0001-Revert-Change-consul-SI-tokens-to-be-local.patch;
hashicorp-nomad.add-nix-integration = patches/0001-Add-Nix-integration.patch;