From 0aadc50511fde5f2c793e53a4e0709467c25e868 Mon Sep 17 00:00:00 2001 From: th3r00t Date: Sat, 30 Aug 2025 14:28:41 -0400 Subject: [PATCH] Updated remote tmux config, removed old nvim blocks --- home-server.nix | 5 ----- home-xps13.nix | 5 ----- modules/configuration-server.nix | 4 ++-- modules/home-manager-common.nix | 12 ++++++++++-- .../server-partitioning.nix | 0 5 files changed, 12 insertions(+), 14 deletions(-) rename server-partitioning.nix => modules/server-partitioning.nix (100%) diff --git a/home-server.nix b/home-server.nix index a7ad51a..78f4f95 100644 --- a/home-server.nix +++ b/home-server.nix @@ -12,11 +12,6 @@ recursive = true; executable = true; }; - home.file.".config/nvim" = { - source = ./home/.config/nvim; - recursive = true; - executable = true; - }; home.file.".irssi" = { source = ./home/.irssi; recursive = true; diff --git a/home-xps13.nix b/home-xps13.nix index 011c885..e4d56f5 100644 --- a/home-xps13.nix +++ b/home-xps13.nix @@ -12,11 +12,6 @@ recursive = true; executable = true; }; - # home.file.".config/nvim" = { - # source = ./home/.config/nvim; - # recursive = true; - # executable = true; - # }; home.file.".irssi" = { source = ./home/.irssi; recursive = true; diff --git a/modules/configuration-server.nix b/modules/configuration-server.nix index 862eba6..9c886f3 100644 --- a/modules/configuration-server.nix +++ b/modules/configuration-server.nix @@ -38,7 +38,7 @@ firewall.allowedUDPPorts = [ 21 22 80 443 5900 8080 8384]; }; time.timeZone = "America/New_York"; - i18 = { + i18n = { defaultLocale = "en_US.UTF-8"; extraLocaleSettings = { LC_ADDRESS = "en_US.UTF-8"; @@ -91,10 +91,10 @@ services = { pulseaudio.enable = false; - rtkit.enable = true; printing.enable = false; openssh.enable = true; }; + security.rtkit.enable = true; users.users.root.openssh.authorizedKeys.keys = [ diff --git a/modules/home-manager-common.nix b/modules/home-manager-common.nix index cda3ca4..14989d3 100644 --- a/modules/home-manager-common.nix +++ b/modules/home-manager-common.nix @@ -198,9 +198,17 @@ set-option -as terminal-features 'foot:RGB' } 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 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 -g focus-events on diff --git a/server-partitioning.nix b/modules/server-partitioning.nix similarity index 100% rename from server-partitioning.nix rename to modules/server-partitioning.nix