zsh: add support for prezto configuration framework (#655)
This commit is contained in:
parent
7339784e07
commit
18a05a9604
7 changed files with 573 additions and 2 deletions
|
|
@ -4,4 +4,5 @@
|
|||
zsh-history-path-new-custom = ./history-path-new-custom.nix;
|
||||
zsh-history-path-old-default = ./history-path-old-default.nix;
|
||||
zsh-history-path-old-custom = ./history-path-old-custom.nix;
|
||||
zsh-prezto = ./prezto.nix;
|
||||
}
|
||||
|
|
|
|||
13
tests/modules/programs/zsh/prezto.nix
Normal file
13
tests/modules/programs/zsh/prezto.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
with lib;
|
||||
|
||||
{
|
||||
config = {
|
||||
programs.zsh.prezto.enable = true;
|
||||
|
||||
nmt.script = ''
|
||||
assertFileExists home-files/.zpreztorc
|
||||
'';
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue