diff --git a/configs/browser.nix b/configs/browser.nix index b3e647b..18e05bb 100644 --- a/configs/browser.nix +++ b/configs/browser.nix @@ -82,5 +82,9 @@ }; }; + home-manager.users.me = { + stylix.targets.firefox.profileNames = ["default"]; + }; + environment.variables.BROWSER = "firefox"; } diff --git a/configs/stylix.nix b/configs/stylix.nix index eaa177e..3de37f0 100644 --- a/configs/stylix.nix +++ b/configs/stylix.nix @@ -26,6 +26,9 @@ in { size = 12; }; + home-manager.users.me = { + stylix.autoEnable = true; + }; # environment.etc."stylix/wallpaper.png".source = generatedWallpaper; diff --git a/configs/tmux.nix b/configs/tmux.nix index b8c7af8..c9492b3 100644 --- a/configs/tmux.nix +++ b/configs/tmux.nix @@ -13,7 +13,7 @@ aggressiveResize = true; escapeTime = 50; historyLimit = 7000; - shortcut = "a"; + shortcut = "b"; extraConfig = '' set -g mouse on @@ -37,15 +37,6 @@ set -g status-left-length 32 set -g status-right-length 150 - set -g status-bg colour242 - - setw -g window-status-format "#[fg=colour12,bg=colour233] #I #[fg=white,bg=colour237] #W " - setw -g window-status-current-format "#[fg=colour12,bg=colour233] * #[fg=white,bg=colour237,bold] #W " - - set -g status-left "" - set -g status-right "#[fg=colour255,bg=colour237,bold] #(hostname -I) #[default]#[fg=colour12,bg=colour233] %FT%R " - set -g status-justify left - set -g status-position bottom ''; };