summaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2024-08-23 08:44:19 -0400
committerseth <[email protected]>2024-10-02 06:52:12 -0400
commitbd46bfd1728b513a09193e916c73acae37a7b846 (patch)
treef4b62602a2845d992d3f028c39d8ea449c787820 /shell.nix
parent4ea69fd2e3a84bb6db88ead2d2ac5fd4bde13a11 (diff)
nix: simplify flake
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix17
1 files changed, 0 insertions, 17 deletions
diff --git a/shell.nix b/shell.nix
deleted file mode 100644
index 9daab94..0000000
--- a/shell.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- pkgs ? import nixpkgs {
- inherit system;
- config = { };
- overlays = [ ];
- },
- nixpkgs ? <nixpkgs>,
- system ? builtins.currentSystem,
- formatter ? pkgs.nixfmt-rfc-style,
-}:
-pkgs.mkShellNoCC {
- packages = [
- pkgs.zola
- formatter
- pkgs.actionlint
- ];
-}