diff options
Diffstat (limited to 'dev/devShell.nix')
| -rw-r--r-- | dev/devShell.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/dev/devShell.nix b/dev/devShell.nix new file mode 100644 index 0000000..7792817 --- /dev/null +++ b/dev/devShell.nix @@ -0,0 +1,15 @@ +{ + perSystem = + { pkgs, self', ... }: + { + devShells.default = pkgs.mkShellNoCC { + packages = [ + pkgs.actionlint + + self'.formatter + pkgs.nil + pkgs.statix + ]; + }; + }; +} |
