diff options
author | Soispha <soispha@vhack.eu> | 2023-04-29 17:31:00 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-05-09 19:32:58 +0200 |
commit | fb206f9be18b4936ef716935c2343531acaf92c2 (patch) | |
tree | 88a86e5ae9f27a050d22397cc2d991a8b9e9b70b /home-manager/config | |
parent | Docs(todo): Update (diff) | |
download | nixos-config-fb206f9be18b4936ef716935c2343531acaf92c2.tar.gz nixos-config-fb206f9be18b4936ef716935c2343531acaf92c2.zip |
Refactor(treewide): Use separate shell library
Diffstat (limited to 'home-manager/config')
-rw-r--r-- | home-manager/config/zsh/default.nix | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/home-manager/config/zsh/default.nix b/home-manager/config/zsh/default.nix index 4c52b829..f9e5e4e5 100644 --- a/home-manager/config/zsh/default.nix +++ b/home-manager/config/zsh/default.nix @@ -2,7 +2,8 @@ config, pkgs, lib, - shell-library, + shell_library, + system, ... }: { # TODO ADD THIS ADDON @@ -72,7 +73,7 @@ + builtins.readFile ./config/zsh-prompt.sh + builtins.readFile ./config/custom_cursor.sh + builtins.readFile "${pkgs.fzf}/share/fzf/key-bindings.zsh" - + "source ${shell-library}/lib"; + + "source ${shell_library.rawLib.${system}}"; shellAliases = { ls = "ls -a --color=auto"; ll = ". ll"; |