mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
11 lines
274 B
Nix
11 lines
274 B
Nix
{ 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}
|
|
'';
|
|
}
|