mirror of
https://github.com/nix-community/home-manager
synced 2024-11-06 03:09:45 +01:00
b220d5c446
* zsh: update prezto path structure The path structure was changed in Nixpkgs and this commit updates the module to match. Fixes #1773 * zsh-prezto: fix tests, small tidyup Co-authored-by: Nick Hu <me@nickhu.co.uk>
25 lines
635 B
Nix
25 lines
635 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
programs.zsh.prezto.enable = true;
|
|
|
|
nixpkgs.overlays = [
|
|
(self: super: {
|
|
zsh-prezto = super.runCommandLocal "dummy-zsh-prezto" { } ''
|
|
mkdir -p $out/share/zsh-prezto/runcoms
|
|
echo '# zprofile' > $out/share/zsh-prezto/runcoms/zprofile
|
|
echo '# zlogin' > $out/share/zsh-prezto/runcoms/zlogin
|
|
echo '# zlogout' > $out/share/zsh-prezto/runcoms/zlogout
|
|
echo '# zshenv' > $out/share/zsh-prezto/runcoms/zshenv
|
|
'';
|
|
})
|
|
];
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.zpreztorc
|
|
'';
|
|
};
|
|
}
|