Skip to content

Commit

Permalink
flake: use latest node, update
Browse files Browse the repository at this point in the history
  • Loading branch information
shazow committed Oct 1, 2024
1 parent 2f7efc2 commit d37a843
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 10 deletions.
16 changes: 10 additions & 6 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 8 additions & 4 deletions flake.nix
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
};
outputs = {
self,
nixpkgs,
flake-utils,
...
}:
flake-utils.lib.eachDefaultSystem
(system: let
Expand All @@ -11,10 +14,11 @@
};
in {
devShells.default = pkgs.mkShell {
buildInputs = [
pkgs.nodejs_22
pkgs.nodePackages.pnpm
buildInputs = with pkgs.nodePackages_latest; [
nodejs
pnpm

] ++ [
pkgs.graphviz # For debugging
pkgs.gnumake
];
Expand Down

0 comments on commit d37a843

Please sign in to comment.