diff options
author | Soispha <soispha@vhack.eu> | 2023-05-29 12:55:51 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-05-29 12:55:51 +0200 |
commit | d4ff07202cf977a6a998cea39de4c6501481f39d (patch) | |
tree | ef17d45d63165ba2f7dcd9cd316e907655fae3f3 | |
parent | Fix(hm/conf/lf/keybinds): Update (diff) | |
download | nixos-config-d4ff07202cf977a6a998cea39de4c6501481f39d.tar.gz nixos-config-d4ff07202cf977a6a998cea39de4c6501481f39d.zip |
Fix(hm/conf/zsh): Quote string
-rw-r--r-- | home-manager/config/zsh/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/home-manager/config/zsh/default.nix b/home-manager/config/zsh/default.nix index 83d4b84f..831c2bb3 100644 --- a/home-manager/config/zsh/default.nix +++ b/home-manager/config/zsh/default.nix @@ -70,7 +70,7 @@ + builtins.readFile ./config/zsh-prompt.sh + builtins.readFile ./config/custom_cursor.sh + builtins.readFile "${pkgs.fzf}/share/fzf/key-bindings.zsh" - + "SHELL_LIBRARY_VERSION="1.1.3" source ${shell_library.rawLib.${system}}"; + + "SHELL_LIBRARY_VERSION=\"1.1.3\" source ${shell_library.rawLib.${system}}"; shellAliases = { ll = ". ll"; hisea = "history 0 | grep"; |