diff options
author | Soispha <soispha@vhack.eu> | 2024-02-28 20:59:17 +0100 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2024-02-28 20:59:17 +0100 |
commit | 7f189ae4b74cf3123b1026d02e33d5f87b67cbe1 (patch) | |
tree | b4179902028487447033b98ca2ddd1168334fe32 | |
parent | chore(version): v1.35.0 (diff) | |
download | nixos-config-7f189ae4b74cf3123b1026d02e33d5f87b67cbe1.tar.gz nixos-config-7f189ae4b74cf3123b1026d02e33d5f87b67cbe1.zip |
fix(hm/conf/zsh): Add a newline to the shell library import
Diffstat (limited to '')
-rw-r--r-- | hm/soispha/conf/zsh/default.nix | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/hm/soispha/conf/zsh/default.nix b/hm/soispha/conf/zsh/default.nix index b43147e1..fc0387aa 100644 --- a/hm/soispha/conf/zsh/default.nix +++ b/hm/soispha/conf/zsh/default.nix @@ -68,7 +68,11 @@ initExtraFirst = builtins.readFile ./config/zsh-init.zsh # + builtins.readFile ./config/zsh-prompt.sh - + ''SHELL_LIBRARY_VERSION="2.1.1" source ${shell_library.rawLib.${system}}'' + + '' + SHELL_LIBRARY_VERSION="2.1.1" source ${shell_library.rawLib.${system}} + # This next line buffers the first line of the following item: + + '' # NOTE: This must be before the insult, as we otherwise override the previous handler <2024-02-28> + builtins.readFile ./config/command_not_found.sh + builtins.readFile ./config/command_not_found_insult.sh |