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" ];
versioning = {
type = "simple";
params.keep = "5";
params = { keep = "5"; };
};
};
@ -41,7 +41,7 @@
devices = [ "zion" ];
versioning = {
type = "simple";
params.keep = "5";
params = { keep = "5"; };
};
};

View File

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