18 lines
336 B
Nix
18 lines
336 B
Nix
|
{
|
||
|
programs.zsh = {
|
||
|
enable = true;
|
||
|
zplug = {
|
||
|
enable = true;
|
||
|
plugins = [
|
||
|
{ name = "romkatv/powerlevel10k"; tags = [ "as:theme" "depth:1" ]; }
|
||
|
];
|
||
|
};
|
||
|
initExtraFirst = ''
|
||
|
${builtins.readFile ./p10k.zsh.initfirst}
|
||
|
'';
|
||
|
initExtra = ''
|
||
|
${builtins.readFile ./p10k.zsh}
|
||
|
'';
|
||
|
};
|
||
|
}
|