avahi: fix test
Reflects module changes made by cdd7310a503481e3c40266be45b6b8256d95ecbd
This commit is contained in:
parent
40c586b7ce
commit
75e96d2c30
@ -5,18 +5,21 @@ import ./make-test.nix ({ pkgs, ... } : {
|
|||||||
maintainers = [ eelco chaoflow ];
|
maintainers = [ eelco chaoflow ];
|
||||||
};
|
};
|
||||||
|
|
||||||
nodes = {
|
nodes = let
|
||||||
one =
|
cfg = { config, pkgs, ... }: {
|
||||||
{ config, pkgs, ... }: {
|
services.avahi = {
|
||||||
services.avahi.enable = true;
|
enable = true;
|
||||||
services.avahi.nssmdns = true;
|
nssmdns = true;
|
||||||
|
publish.addresses = true;
|
||||||
|
publish.domain = true;
|
||||||
|
publish.enable = true;
|
||||||
|
publish.userServices = true;
|
||||||
|
publish.workstation = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
two =
|
|
||||||
{ config, pkgs, ... }: {
|
|
||||||
services.avahi.enable = true;
|
|
||||||
services.avahi.nssmdns = true;
|
|
||||||
};
|
};
|
||||||
|
in {
|
||||||
|
one = cfg;
|
||||||
|
two = cfg;
|
||||||
};
|
};
|
||||||
|
|
||||||
testScript =
|
testScript =
|
||||||
|
Loading…
x
Reference in New Issue
Block a user