4d19ca4703
GitOrigin-RevId: a7117efb3725e6197dd95424136f79147aa35e5b
11 lines
233 B
Nix
11 lines
233 B
Nix
{ config, lib, ... }:
|
|
|
|
{
|
|
home.file."toscfg-empty-result.txt".text = lib.hm.generators.toSCFG { } { };
|
|
|
|
nmt.script = ''
|
|
assertFileContent \
|
|
home-files/toscfg-empty-result.txt \
|
|
${./toscfg-empty-result.txt}
|
|
'';
|
|
}
|