flake/modules/home/terminal/default.nix
2026-03-06 17:49:33 +00:00

25 lines
363 B
Nix

{
lib,
osConfig,
...
}: {
imports = [
./shell.nix
./emulator.nix
./wezterm.nix
./nushell.nix
./development.nix
./tools.nix
./yazi.nix
./hr
./helix
./nvim
./zellij
./opencode
./gh.nix
];
config = lib.mkIf osConfig.mods.desktop.enable {
mods.terminal.emulator.enable = lib.mkDefault true;
};
}