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