This repository has been archived on 2023-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
nil/modules/lang/javascript.nix
James Patrick da10937ed1 Added lang. This is for development targets.
This is kind of bad place for this. But I'm keeping it here until I can
reorganize it.
2022-03-04 22:24:38 -05:00

26 lines
477 B
Nix

{ config, lib, pkgs, ... }:
let
cfg = config.this.lang.bash;
graphical = config.this.graphical;
in with lib; {
options = {
this.lang.javascript = {
enable = mkOption {
default = graphical.enable;
type = with types; bool;
};
};
};
config = mkIf cfg.enable {
home-manager.users.james = {
home.packages = with pkgs; [
nodePackages.npm
nodePackages.vue-cli
nodejs
yarn
];
};
};
}