feat(template): +nodejs

This commit is contained in:
2026-01-04 20:39:30 +00:00
parent e5307a51bb
commit 2e1838b82b
6 changed files with 1072 additions and 2 deletions
+28
View File
@@ -0,0 +1,28 @@
{
description = "";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05";
util = {
url = "github:hectic-lab/util.nix";
inputs = {
nixpkgs.follows = "nixpkgs";
};
};
};
outputs = { self, nixpkgs, util }:
let
overlays = [ util.overlays.default ];
in
util.lib.forAllSystemsWithPkgs overlays ({ system, pkgs }:
let
lib = pkgs.lib;
in
{
### DEV SHELL ###
devShells.${system} = {
default = import ./devshell/default.nix { inherit pkgs; };
};
}
);
}