refactored

for 26.05
This commit is contained in:
alsaiduq-lab 2026-03-02 03:38:24 -07:00
parent e92d8e6616
commit 075cb86d40
34 changed files with 435 additions and 345 deletions

View file

@ -1,18 +1,9 @@
{
config,
pkgs,
lib,
...
}: {
options.npm.enable = lib.mkEnableOption "npm setup";
config = lib.mkIf config.npm.enable {
environment.systemPackages = with pkgs; [
nodejs_24
nodePackages.npm
yarn
bun
nodePackages.typescript
];
};
{pkgs, ...}: {
environment.systemPackages = with pkgs; [
nodejs_24
nodePackages.npm
yarn
bun
nodePackages.typescript
];
}