1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-01 02:48:30 +02:00

zsh: fix zprof typo

This commit is contained in:
MayNiklas 2024-01-03 11:05:13 +01:00
parent 6e91c5df19
commit 4d8f90205c

View File

@ -253,6 +253,7 @@ in
{ {
imports = [ imports = [
(mkRenamedOptionModule [ "programs" "zsh" "enableSyntaxHighlighting" ] [ "programs" "zsh" "syntaxHighlighting" "enable" ]) (mkRenamedOptionModule [ "programs" "zsh" "enableSyntaxHighlighting" ] [ "programs" "zsh" "syntaxHighlighting" "enable" ])
(mkRenamedOptionModule [ "programs" "zsh" "zproof" ] [ "programs" "zsh" "zprof" ])
]; ];
options = { options = {
@ -356,10 +357,10 @@ in
description = "Enable zsh autosuggestions"; description = "Enable zsh autosuggestions";
}; };
zproof.enable = mkOption { zprof.enable = mkOption {
default = false; default = false;
description = '' description = ''
Enable zproof in your zshrc. Enable zprof in your zshrc.
''; '';
}; };
@ -541,9 +542,9 @@ in
++ optional cfg.oh-my-zsh.enable cfg.oh-my-zsh.package; ++ optional cfg.oh-my-zsh.enable cfg.oh-my-zsh.package;
home.file."${relToDotDir ".zshrc"}".text = concatStringsSep "\n" ([ home.file."${relToDotDir ".zshrc"}".text = concatStringsSep "\n" ([
# zproof must be loaded before everything else, since it # zprof must be loaded before everything else, since it
# benchmarks the shell initialization. # benchmarks the shell initialization.
(optionalString cfg.zproof.enable '' (optionalString cfg.zprof.enable ''
zmodload zsh/zprof zmodload zsh/zprof
'') '')
@ -671,7 +672,7 @@ in
} }
'') '')
(optionalString cfg.zproof.enable (optionalString cfg.zprof.enable
'' ''
zprof zprof
'') '')