18 lines
273 B
Nix
18 lines
273 B
Nix
{ config, lib, ... }:
|
|
lib.my.makeSwitch {
|
|
inherit config;
|
|
optionName = "all shells";
|
|
optionPath = [
|
|
"cli"
|
|
"shell"
|
|
"all"
|
|
];
|
|
config' = {
|
|
my.cli.shell = {
|
|
zsh.enable = true;
|
|
fish.enable = true;
|
|
starship.enable = true;
|
|
};
|
|
};
|
|
}
|