b447282c7a
* feat: add test node and spin up podman/cockpit * dev hack * bug: disable wayland temporarily #52 * feat: add nfs mount to nas * chore: add nas to sshconf * derp * hax * fix: hax * feat: firefox and gnome tweaks * chore: tweak nautilus --------- Co-authored-by: Truxnell <9149206+truxnell@users.noreply.github.com>
41 lines
1 KiB
Nix
41 lines
1 KiB
Nix
{ config
|
|
, pkgs
|
|
, lib
|
|
, ...
|
|
}:
|
|
with lib; let
|
|
cfg = config.myHome.shell.wezterm;
|
|
in
|
|
{
|
|
options.myHome.shell.wezterm = {
|
|
enable = mkEnableOption "wezterm";
|
|
configPath = mkOption {
|
|
type = types.str;
|
|
};
|
|
};
|
|
|
|
# Temporary make .config/wezterm/wezterm.lua link to the local copy
|
|
config = mkIf cfg.enable {
|
|
# xdg.configFile."wezterm/wezterm.lua".source = config.lib.file.mkOutOfStoreSymlink cfg.configPath;
|
|
programs.wezterm.package = pkgs.unstable.wezterm;
|
|
programs.wezterm = {
|
|
enable = true;
|
|
extraConfig = ''
|
|
local wez = require('wezterm')
|
|
return {
|
|
-- https://github.com/wez/wezterm/issues/2011
|
|
enable_wayland = false,
|
|
color_scheme = "Dracula (Official)",
|
|
check_for_updates = false,
|
|
window_background_opacity = .90,
|
|
window_padding = {
|
|
left = '2cell',
|
|
right = '2cell',
|
|
top = '1cell',
|
|
bottom = '0cell',
|
|
},
|
|
}
|
|
'';
|
|
};
|
|
};
|
|
}
|