72904c318c
GitOrigin-RevId: 9bf1f40af124573a54fd208b1f539eb694ef31a6
13 lines
175 B
Nix
13 lines
175 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
programs.zsh.prezto.enable = true;
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.zpreztorc
|
|
'';
|
|
};
|
|
}
|