summaryrefslogtreecommitdiff
path: root/dev/devShells.nix
diff options
context:
space:
mode:
Diffstat (limited to 'dev/devShells.nix')
-rw-r--r--dev/devShells.nix42
1 files changed, 0 insertions, 42 deletions
diff --git a/dev/devShells.nix b/dev/devShells.nix
deleted file mode 100644
index 211ddfd..0000000
--- a/dev/devShells.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
-
- # format + lint
- pkgs.actionlint
- self'.formatter
- pkgs.nixfmt-rfc-style
- pkgs.nil
- pkgs.statix
-
- # utils
- pkgs.fzf # for just
- pkgs.just
-
- # terranix
- self'.packages.opentofu
- ]
- # see above comment about nix
- ++ lib.optional pkgs.stdenv.isDarwin inputs'.nix-darwin.packages.darwin-rebuild
- ++ lib.optionals pkgs.stdenv.isLinux [
- pkgs.nixos-rebuild # ditto
- inputs'.agenix.packages.agenix
- ];
- };
- };
- };
-}