2.home-manager/tests/modules/programs/aphorme/settings.nix
2026-01-14 16:25:31 -06:00

25 lines
476 B
Nix

{
programs.aphorme = {
enable = true;
settings = {
gui_cfg = {
icon = true;
ui_framework = "EGUI";
font_size = 12;
window_size = [
300
300
];
};
app_cfg = {
paths = [ "$HOME/Desktop" ];
};
};
};
nmt.script = ''
assertFileExists home-files/.config/aphorme/config.toml
assertFileContent home-files/.config/aphorme/config.toml \
${./config.toml}
'';
}