nixos-config/modules/home/shell/default.nix
2024-05-19 20:00:58 +02:00

20 lines
345 B
Nix

{ config, lib, ... }:
let
cfg = config.myConfig.shell;
in
{
imports = [
./starship.nix
./enhancement.nix
];
options.myConfig.shell = {
bash.enable = lib.mkEnableOption "";
zsh.enable = lib.mkEnableOption "";
};
config = {
programs.bash.enable = cfg.bash.enable;
programs.zsh.enable = cfg.zsh.enable;
};
}