mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-11 12:15:34 +03:00
nixos/zsh: remove lib.lib
This fails my NixOS configuration: ``` error: attribute 'lib' missing at /nix/store/ninrqc3pblnmqgh489cbr9rq5pijcpd6-nixpkgs-src/nixos/modules/programs/zsh/zsh-syntax-highlighting.nix:90:7: 89| programs.zsh.interactiveShellInit = 90| lib.lib.mkAfter (lib.concatStringsSep "\n" ([ | ^ 91| "source ${pkgs.zsh-syntax-highlighting}/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh" ```
This commit is contained in:
parent
6e18225ca6
commit
2ec060b94e
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ in
|
|||
];
|
||||
|
||||
programs.zsh.interactiveShellInit =
|
||||
lib.lib.mkAfter (lib.concatStringsSep "\n" ([
|
||||
lib.mkAfter (lib.concatStringsSep "\n" ([
|
||||
"source ${pkgs.zsh-syntax-highlighting}/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh"
|
||||
] ++ lib.optional (builtins.length(cfg.highlighters) > 0)
|
||||
"ZSH_HIGHLIGHT_HIGHLIGHTERS=(${builtins.concatStringsSep " " cfg.highlighters})"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue