2.home-manager/tests/modules/programs/halloy/example-config.nix
2025-05-11 18:52:09 -05:00

19 lines
434 B
Nix

{
programs.halloy = {
enable = true;
settings = {
buffer.channel.topic.enabled = true;
servers.liberachat = {
nickname = "halloy-user";
server = "irc.libera.chat";
channels = [ "#halloy" ];
};
};
};
nmt.script = ''
assertFileExists home-files/.config/halloy/config.toml
assertFileContent home-files/.config/halloy/config.toml \
${./example-config.toml}
'';
}