Compare commits

..

1 Commits

Author SHA1 Message Date
coolneng f702474d22
Use dot operator for attribute sets with 1 element 2021-04-14 17:04:39 +02:00
2 changed files with 5 additions and 7 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,11 +12,9 @@
enable = true; enable = true;
brscan4 = { brscan4 = {
enable = true; enable = true;
netDevices = { netDevices.home = {
home = { model = "DCP-L2530DW";
model = "DCP-L2530DW"; ip = "192.168.13.4";
ip = "192.168.13.4";
};
}; };
}; };
}; };