1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-10-01 02:37:27 +02:00
home-manager/tests/modules/programs/zsh/prezto.nix

13 lines
175 B
Nix

{ config, lib, pkgs, ... }:
with lib;
{
config = {
programs.zsh.prezto.enable = true;
nmt.script = ''
assertFileExists home-files/.zpreztorc
'';
};
}