2.home-manager/tests/modules/programs/fresh-editor/fresh-editor-settings.nix
2026-01-21 10:52:13 -06:00

10 lines
225 B
Nix

{
programs.fresh-editor = {
enable = true;
settings = builtins.fromJSON (builtins.readFile ./config.json);
};
nmt.script = ''
assertFileContent home-files/.config/fresh/config.json ${./config.json}
'';
}