summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--hosts/sif/default.nix6
-rw-r--r--user-profiles/tmux/tmux.conf2
-rw-r--r--user-profiles/utils.nix2
3 files changed, 9 insertions, 1 deletions
diff --git a/hosts/sif/default.nix b/hosts/sif/default.nix
index d82222d0..45f2a87c 100644
--- a/hosts/sif/default.nix
+++ b/hosts/sif/default.nix
@@ -587,6 +587,12 @@ in {
587 587
588 i18n.inputMethod.enabled = "ibus"; 588 i18n.inputMethod.enabled = "ibus";
589 589
590 xdg.portal = {
591 enable = true;
592 gtkUsePortal = true;
593 extraPortals = with pkgs; [ xdg-desktop-portal-gtk ];
594 };
595
590 system.stateVersion = "20.03"; 596 system.stateVersion = "20.03";
591 }; 597 };
592} 598}
diff --git a/user-profiles/tmux/tmux.conf b/user-profiles/tmux/tmux.conf
index f9a3e11f..36dab109 100644
--- a/user-profiles/tmux/tmux.conf
+++ b/user-profiles/tmux/tmux.conf
@@ -10,6 +10,8 @@ set-option -g mouse on
10set-option -g set-clipboard on 10set-option -g set-clipboard on
11set-option -g terminal-overrides 'rxvt-uni*:XT:Ms=\E]52;%p1%s;%p2%s\007' 11set-option -g terminal-overrides 'rxvt-uni*:XT:Ms=\E]52;%p1%s;%p2%s\007'
12 12
13set-environment -g LESS " -R "
14
13## determine if we should enable 256-colour support 15## determine if we should enable 256-colour support
14if "[[ ''${TERM} =~ 256color || ''${TERM} == fbterm || ''${TERM} =~ alacritty ]]" 'set -g default-terminal tmux-256color' 16if "[[ ''${TERM} =~ 256color || ''${TERM} == fbterm || ''${TERM} =~ alacritty ]]" 'set -g default-terminal tmux-256color'
15 17
diff --git a/user-profiles/utils.nix b/user-profiles/utils.nix
index a1d7aa62..d0d2b2c8 100644
--- a/user-profiles/utils.nix
+++ b/user-profiles/utils.nix
@@ -15,7 +15,7 @@
15 }; 15 };
16 16
17 home.sessionVariables = { 17 home.sessionVariables = {
18 LESSCOLORIZER = "pygmentize -O style=solarized-dark"; 18 LESSCOLORIZER = "pygmentize -O style=rrt";
19 }; 19 };
20 20
21 home.packages = with pkgs; [ 21 home.packages = with pkgs; [