summary refs log tree commit diff
path: root/nixos/modules/config/vte.nix
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2019-08-23 10:11:48 -0400
committerworldofpeace <worldofpeace@protonmail.ch>2019-08-23 10:11:48 -0400
commit9d5f1eb5815c3294a272ad7600a2787b4200b49d (patch)
tree668065f7a26fe71cd6f2d816078116c53bda0dec /nixos/modules/config/vte.nix
parent1e2497720f6a1b6b5749111ae6f4c990717ac2dd (diff)
downloadnixpkgs-9d5f1eb5815c3294a272ad7600a2787b4200b49d.tar
nixpkgs-9d5f1eb5815c3294a272ad7600a2787b4200b49d.tar.gz
nixpkgs-9d5f1eb5815c3294a272ad7600a2787b4200b49d.tar.bz2
nixpkgs-9d5f1eb5815c3294a272ad7600a2787b4200b49d.tar.lz
nixpkgs-9d5f1eb5815c3294a272ad7600a2787b4200b49d.tar.xz
nixpkgs-9d5f1eb5815c3294a272ad7600a2787b4200b49d.tar.zst
nixpkgs-9d5f1eb5815c3294a272ad7600a2787b4200b49d.zip
nixos/vte: ensure bash vte snippet appears first
Fixes #67312
Diffstat (limited to 'nixos/modules/config/vte.nix')
-rw-r--r--nixos/modules/config/vte.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/config/vte.nix b/nixos/modules/config/vte.nix
index 9024ceddaee..d4a8c926fef 100644
--- a/nixos/modules/config/vte.nix
+++ b/nixos/modules/config/vte.nix
@@ -42,7 +42,7 @@ in
 
   config = mkMerge [
     (mkIf config.programs.bash.vteIntegration {
-      programs.bash.interactiveShellInit = vteInitSnippet;
+      programs.bash.interactiveShellInit = mkBefore vteInitSnippet;
     })
 
     (mkIf config.programs.zsh.vteIntegration {