Compare commits

...

2 commits

Author SHA1 Message Date
Jet
ede16eb325
feat: make zellij bottom bar cleaner 2026-03-26 21:48:07 -07:00
Jet
3151b73ba9
feat: add mullvad exit nodes 2026-03-26 21:47:56 -07:00
2 changed files with 27 additions and 2 deletions

View file

@ -31,7 +31,13 @@
networking.firewall.checkReversePath = "loose"; networking.firewall.checkReversePath = "loose";
networking.firewall.interfaces."tailscale0".allowedTCPPorts = [ 4096 ]; networking.firewall.interfaces."tailscale0".allowedTCPPorts = [ 4096 ];
services.tailscale.enable = true; services.tailscale = {
enable = true;
extraSetFlags = [
"--exit-node=us-sjc-wg-401.mullvad.ts.net"
"--exit-node-allow-lan-access"
];
};
time.timeZone = "America/Los_Angeles"; time.timeZone = "America/Los_Angeles";
i18n.defaultLocale = "en_US.UTF-8"; i18n.defaultLocale = "en_US.UTF-8";

View file

@ -259,6 +259,18 @@ in
enable = true; enable = true;
enableBashIntegration = false; enableBashIntegration = false;
layouts.tabs-and-mode = ''
layout {
pane
pane size=1 borderless=true {
plugin location="status-bar"
}
pane size=1 borderless=true {
plugin location="tab-bar"
}
}
'';
layouts.zoxide-picker = '' layouts.zoxide-picker = ''
layout { layout {
pane command="${zellijNewTabZoxide}/bin/zellij-new-tab-zoxide" close_on_exit=true pane command="${zellijNewTabZoxide}/bin/zellij-new-tab-zoxide" close_on_exit=true
@ -271,8 +283,9 @@ in
settings = { settings = {
# Default shell (using bash as configured in your system) # Default shell (using bash as configured in your system)
default_shell = "bash"; default_shell = "bash";
default_layout = "compact"; default_layout = "tabs-and-mode";
pane_frames = false; pane_frames = false;
simplified_ui = true;
# Mouse and interaction settings - enable for proper pane handling # Mouse and interaction settings - enable for proper pane handling
mouse_mode = true; mouse_mode = true;
@ -282,6 +295,12 @@ in
show_release_notes = false; show_release_notes = false;
on_force_close = "detach"; on_force_close = "detach";
ui = {
pane_frames = {
hide_session_name = true;
};
};
}; };
extraConfig = '' extraConfig = ''