da10937ed1
This is kind of bad place for this. But I'm keeping it here until I can reorganize it.
24 lines
450 B
Nix
24 lines
450 B
Nix
{ config, lib, pkgs, ... }:
|
|
let
|
|
cfg = config.this.lang.bash;
|
|
graphical = config.this.graphical;
|
|
in with lib; {
|
|
options = {
|
|
this.lang.bash = {
|
|
enable = mkOption {
|
|
default = graphical.enable;
|
|
type = with types; bool;
|
|
};
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
home-manager.users.james = {
|
|
home.packages = with pkgs; [
|
|
nodePackages.bash-language-server
|
|
shellcheck
|
|
];
|
|
};
|
|
};
|
|
}
|