2.home-manager/tests/modules/programs/nom/config-exists.nix
oneorseveralcats 932ca46013 nom: add module
adds a module for nom, a terminal-based rss feed reader.
2026-03-22 12:39:22 -05:00

13 lines
185 B
Nix

{ ... }:
{
programs.nom = {
enable = true;
settings = {
autoread = true;
};
};
nmt.script = ''
assertFileExists "home-files/.config/nom/config.yml"
'';
}