1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-26 08:28: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 = [
(mkRenamedOptionModule [ "programs" "zsh" "enableSyntaxHighlighting" ] [ "programs" "zsh" "syntaxHighlighting" "enable" ])
(mkRenamedOptionModule [ "programs" "zsh" "zproof" ] [ "programs" "zsh" "zprof" ])
];
options = {
@ -356,10 +357,10 @@ in
description = "Enable zsh autosuggestions";
};
zproof.enable = mkOption {
zprof.enable = mkOption {
default = false;
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;
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.
(optionalString cfg.zproof.enable ''
(optionalString cfg.zprof.enable ''
zmodload zsh/zprof
'')
@ -671,7 +672,7 @@ in
}
'')
(optionalString cfg.zproof.enable
(optionalString cfg.zprof.enable
''
zprof
'')