nixos-config/configs/home-manager/foo-dogsquared/modules/programs/terminal-emulator.nix

44 lines
1.3 KiB
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
let
userCfg = config.users.foo-dogsquared;
cfg = userCfg.programs.terminal-emulator;
shellIntegrationFragment = ''
source ${pkgs.bash-preexec}/share/bash/bash-preexec.sh
source ${config.programs.wezterm.package}/etc/profile.d/wezterm.sh
'';
in
{
options.users.foo-dogsquared.programs.terminal-emulator.enable =
lib.mkEnableOption "foo-dogsquared's terminal emulator setup";
config = lib.mkIf cfg.enable {
programs.bash.initExtra = shellIntegrationFragment;
programs.zsh.initExtra = shellIntegrationFragment;
# We're just making a version of Wezterm with the default arguments if
# the user has them.
home.packages =
let
inherit (pkgs) wezterm;
weztermUserDefaultDesktop = pkgs.makeDesktopItem {
name = "wezterm-user-default-args";
desktopName = "WezTerm (user)";
comment = "Wez's Terminal Emulator";
keywords = [ "shell" "prompt" "command" "commandline" "cmd" ];
icon = "org.wezfurlong.wezterm";
startupWMClass = "org.wezfurlong.wezterm";
tryExec = "wezterm";
exec = "wezterm";
type = "Application";
categories = [ "System" "TerminalEmulator" "Utility" ];
};
in
[
wezterm
weztermUserDefaultDesktop
];
};
}