Updated remote tmux config, removed old nvim blocks

This commit is contained in:
2025-08-30 14:28:41 -04:00
parent f81c5889d8
commit 0aadc50511
5 changed files with 12 additions and 14 deletions

View File

@@ -12,11 +12,6 @@
recursive = true; recursive = true;
executable = true; executable = true;
}; };
home.file.".config/nvim" = {
source = ./home/.config/nvim;
recursive = true;
executable = true;
};
home.file.".irssi" = { home.file.".irssi" = {
source = ./home/.irssi; source = ./home/.irssi;
recursive = true; recursive = true;

View File

@@ -12,11 +12,6 @@
recursive = true; recursive = true;
executable = true; executable = true;
}; };
# home.file.".config/nvim" = {
# source = ./home/.config/nvim;
# recursive = true;
# executable = true;
# };
home.file.".irssi" = { home.file.".irssi" = {
source = ./home/.irssi; source = ./home/.irssi;
recursive = true; recursive = true;

View File

@@ -38,7 +38,7 @@
firewall.allowedUDPPorts = [ 21 22 80 443 5900 8080 8384]; firewall.allowedUDPPorts = [ 21 22 80 443 5900 8080 8384];
}; };
time.timeZone = "America/New_York"; time.timeZone = "America/New_York";
i18 = { i18n = {
defaultLocale = "en_US.UTF-8"; defaultLocale = "en_US.UTF-8";
extraLocaleSettings = { extraLocaleSettings = {
LC_ADDRESS = "en_US.UTF-8"; LC_ADDRESS = "en_US.UTF-8";
@@ -91,10 +91,10 @@
services = { services = {
pulseaudio.enable = false; pulseaudio.enable = false;
rtkit.enable = true;
printing.enable = false; printing.enable = false;
openssh.enable = true; openssh.enable = true;
}; };
security.rtkit.enable = true;
users.users.root.openssh.authorizedKeys.keys = users.users.root.openssh.authorizedKeys.keys =
[ [

View File

@@ -198,9 +198,17 @@
set-option -as terminal-features 'foot:RGB' set-option -as terminal-features 'foot:RGB'
} }
if-shell "[[ $(hostname) = 'Titan' ]]" { if-shell "[[ $(hostname) = 'Titan' ]]" {
set-option -as terminal-features 'xterm-256color:RGB' # set-option -as terminal-features 'xterm-256color:RGB'
# set -g default-terminal "tmux-256color"
# set -g terminal-overrides ",xterm-256color:RGB"
set -g default-terminal "tmux-256color" set -g default-terminal "tmux-256color"
set -g terminal-overrides ",xterm-256color:RGB"
# Enable 24-bit color for ANY parent terminal tmux detects
# (covers foot, kitty, wezterm, alacritty, xterm-256color, etc.)
set-option -as terminal-features '*:RGB'
# If you previously set terminal-overrides/Tc, drop them to avoid conflicts
# set -gu terminal-overrides # uncomment if you had overrides before
} }
set-option -g update-environment "DISPLAY XAUTHORITY WAYLAND_DISPLAY XDG_RUNTIME_DIR HYPRLAND_INSTANCE_SIGNATURE" set-option -g update-environment "DISPLAY XAUTHORITY WAYLAND_DISPLAY XDG_RUNTIME_DIR HYPRLAND_INSTANCE_SIGNATURE"
set -g focus-events on set -g focus-events on