ooknet/home/modules/console/shell/default.nix

17 lines
281 B
Nix

{ lib, ... }:
{
imports = [
./fish
./bash
./zsh
];
options.homeModules.console.shell = {
fish = {
enable = lib.mkEnableOption "Enable fish configuration";
};
bash = {
enable = lib.mkEnableOption "Enable bash configuration";
};
};
}