nixos/modules/dev/javascript.nix

18 lines
339 B
Nix

{ outputs, options, config, lib, pkgs, ...}:
with lib;
let
cfg = config.modules.dev.javascript;
in
{
options.modules.dev.javascript = {
enable = mkEnableOption false;
};
config = mkIf cfg.enable {
users.users.sako.packages = with pkgs; [
nodejs
yarn
nodePackages.typescript-language-server
];
};
}