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