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
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
}
|