10 lines
225 B
Nix
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}
|
|
'';
|
|
}
|