summaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix33
1 files changed, 0 insertions, 33 deletions
diff --git a/shell.nix b/shell.nix
deleted file mode 100644
index 942a9fc..0000000
--- a/shell.nix
+++ /dev/null
@@ -1,33 +0,0 @@
-{
- perSystem = {
- config,
- lib,
- pkgs,
- inputs',
- self',
- ...
- }: {
- devShells.default = pkgs.mkShellNoCC {
- shellHook = config.pre-commit.installationScript;
- packages =
- [
- pkgs.nix
-
- # format + lint
- pkgs.actionlint
- self'.formatter
- pkgs.deadnix
- pkgs.nil
- pkgs.statix
-
- # utils
- pkgs.deploy-rs
- pkgs.fzf
- pkgs.just
- config.terranix.package
- ]
- ++ lib.optional pkgs.stdenv.isDarwin [inputs'.darwin.packages.darwin-rebuild]
- ++ lib.optionals pkgs.stdenv.isLinux [pkgs.nixos-rebuild inputs'.agenix.packages.agenix];
- };
- };
-}