1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-07 13:53:27 +02:00
home-manager/tests/modules/programs/zsh/prezto.nix

14 lines
175 B
Nix
Raw Normal View History

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