Compare commits

..

1 Commits

Author SHA1 Message Date
coolneng f5646929f4
Use dot operator for attribute sets with 1 element 2021-04-14 16:59:17 +02:00
2 changed files with 7 additions and 5 deletions

View File

@ -31,7 +31,7 @@
devices = [ "zion" ]; devices = [ "zion" ];
versioning = { versioning = {
type = "simple"; type = "simple";
params.keep = "5"; params = { keep = "5"; };
}; };
}; };
@ -41,7 +41,7 @@
devices = [ "zion" ]; devices = [ "zion" ];
versioning = { versioning = {
type = "simple"; type = "simple";
params.keep = "5"; params = { keep = "5"; };
}; };
}; };

View File

@ -12,10 +12,12 @@
enable = true; enable = true;
brscan4 = { brscan4 = {
enable = true; enable = true;
netDevices.home = { netDevices = {
home = {
model = "DCP-L2530DW"; model = "DCP-L2530DW";
ip = "192.168.13.4"; ip = "192.168.13.4";
}; };
}; };
}; };
};
} }