mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
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}
|
|
'';
|
|
}
|