diff options
Diffstat (limited to 'flake/dev-shell.nix')
| -rw-r--r-- | flake/dev-shell.nix | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/flake/dev-shell.nix b/flake/dev-shell.nix deleted file mode 100644 index fcf5672..0000000 --- a/flake/dev-shell.nix +++ /dev/null @@ -1,42 +0,0 @@ -{ - perSystem = - { - lib, - pkgs, - inputs', - self', - ... - }: - - { - devShells.default = pkgs.mkShellNoCC { - packages = - [ - # We want to make sure we have the same - # Nix behavior across machines - pkgs.nix - - # For CI - pkgs.actionlint - - # Nix tools - pkgs.nil - pkgs.statix - self'.formatter - - pkgs.just - pkgs.opentofu - ] - ++ lib.optionals pkgs.stdenv.hostPlatform.isDarwin [ - # See above comment about Nix - inputs'.nix-darwin.packages.darwin-rebuild - ] - ++ lib.optionals pkgs.stdenv.hostPlatform.isLinux [ - # Ditto - pkgs.nixos-rebuild - - inputs'.agenix.packages.agenix - ]; - }; - }; -} |
