diff options
| author | seth <[email protected]> | 2024-07-05 18:26:55 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2024-08-23 08:30:48 -0400 |
| commit | 67fba5edad38f8a4651a6a782c7abdc696a464ff (patch) | |
| tree | 1b2ad1572d8938a89e096955d5a46f519a16f5fb /flake.nix | |
| parent | 9135c80ee930045c889f64269735b8319896e2f4 (diff) | |
back to lume for the 1000th time
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 28 |
1 files changed, 12 insertions, 16 deletions
@@ -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); }; } |
