1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 19:46:05 +01:00
home-manager/tests/modules/programs/formiko/example-config.nix
2025-09-17 20:58:54 -05:00

25 lines
469 B
Nix

{
programs.formiko = {
enable = true;
settings = {
main = {
preview = 0;
parser = "json";
auto_scroll = true;
writer = "tiny";
};
editor = {
period_save = true;
check_spelling = false;
auto_indent = false;
};
};
};
nmt.script = ''
assertFileExists home-files/.config/formiko.ini
assertFileContent home-files/.config/formiko.ini \
${./formiko.ini}
'';
}