2.home-manager/tests/modules/programs/pyradio/basic-configuration.nix
2026-01-29 16:10:27 +01:00

11 lines
246 B
Nix

{
programs.pyradio = {
enable = true;
settings.enable_clock = true;
};
nmt.script = ''
assertFileExists "home-files/.config/pyradio/config"
assertFileContent "home-files/.config/pyradio/config" ${./expected-config}
'';
}