mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-03 07:31:03 +01:00
15 lines
265 B
Nix
15 lines
265 B
Nix
{
|
|
config = {
|
|
programs.zsh = {
|
|
enable = true;
|
|
zprof.enable = true;
|
|
};
|
|
|
|
test.stubs.zsh = { };
|
|
|
|
nmt.script = ''
|
|
assertFileRegex home-files/.zshrc 'zmodload zsh/zprof'
|
|
assertFileRegex home-files/.zshrc '^zprof$'
|
|
'';
|
|
};
|
|
}
|