1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-02 03:18:32 +02:00
home-manager/tests/lib/generators/toscfg-example.nix
2024-03-15 11:42:17 +01:00

25 lines
532 B
Nix

{ config, lib, ... }:
{
home.file."toscfg-example-result.txt".text = lib.hm.generators.toSCFG { } {
dir = {
blk1 = {
_params = [ "p1" ''"p2"'' ];
sub1 = [ "arg11" "arg12" ];
sub2 = [ "arg21" "arg22" ];
sub3 = {
_params = [ "arg31" "arg32" ];
sub-sub1 = [ ];
sub-sub2 = [ "arg321" "arg322" ];
};
};
};
};
nmt.script = ''
assertFileContent \
home-files/toscfg-example-result.txt \
${./toscfg-example-result.txt}
'';
}