mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
12 lines
286 B
Nix
12 lines
286 B
Nix
{ config, lib, ... }:
|
|
|
|
{
|
|
home.file."toscfg-err-dir-empty-name-result.txt".text =
|
|
lib.hm.generators.toSCFG { } { "" = [ ]; };
|
|
|
|
nmt.script = ''
|
|
assertFileContent \
|
|
home-files/toscfg-err-dir-empty-name-result.txt \
|
|
${./toscfg-err-dir-empty-name-result.txt}
|
|
'';
|
|
}
|