summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2024-07-05 18:26:55 -0400
committerseth <[email protected]>2024-08-23 08:30:48 -0400
commit67fba5edad38f8a4651a6a782c7abdc696a464ff (patch)
tree1b2ad1572d8938a89e096955d5a46f519a16f5fb /flake.nix
parent9135c80ee930045c889f64269735b8319896e2f4 (diff)
back to lume for the 1000th time
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix28
1 files changed, 12 insertions, 16 deletions
diff --git a/flake.nix b/flake.nix
index 0b705d1..85af52c 100644
--- a/flake.nix
+++ b/flake.nix
@@ -34,25 +34,21 @@
treefmt = treefmtFor.${system}.config.build.check self;
});
- devShells = forAllSystems (system: {
- default = import ./shell.nix {
- inherit system;
- pkgs = nixpkgsFor.${system};
- formatter = self.formatter.${system};
- };
- });
-
- formatter = forAllSystems (system: treefmtFor.${system}.config.build.wrapper);
-
- packages = forAllSystems (
+ devShells = forAllSystems (
system:
let
- pkgs' = import ./. {
- inherit system;
- pkgs = nixpkgsFor.${system};
- };
+ pkgs = nixpkgsFor.${system};
in
- pkgs' // { default = pkgs'.website; }
+ {
+ default = pkgs.mkShellNoCC {
+ packages = [
+ pkgs.deno
+ self.formatter.${system}
+ ];
+ };
+ }
);
+
+ formatter = forAllSystems (system: treefmtFor.${system}.config.build.wrapper);
};
}