nix-on-droid/tests/on-device/config-flake-hosts.cfg.nix
2024-03-05 23:09:33 +01:00

19 lines
249 B
Nix

{ pkgs, ... }:
{
system.stateVersion = "23.11";
networking = {
hosts."127.0.0.2" = [ "a" "b" ];
extraHosts = ''
127.0.0.3 c
'';
hostFiles = [
(pkgs.writeText "hosts" ''
127.0.0.4 d
'')
];
};
}