Send domain options in dhcp

This commit is contained in:
Chris Dombroski 2024-04-25 20:43:33 -04:00
parent 4b7e41c622
commit 32e32299c6
2 changed files with 9 additions and 0 deletions

View file

@ -41,6 +41,10 @@
} }
]; ];
}; };
zeus = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [ ./systems/zeus/configuration.nix ];
};
orangepihole = nixpkgs.lib.nixosSystem { orangepihole = nixpkgs.lib.nixosSystem {
system = "aarch64-linux"; system = "aarch64-linux";
modules = [ ./systems/orangepihole/configuration.nix ]; modules = [ ./systems/orangepihole/configuration.nix ];
@ -54,6 +58,10 @@
hostname = "smolboi"; hostname = "smolboi";
profiles.system.path = deployPkgs.deploy-rs.lib.activate.nixos self.nixosConfigurations.smolboi; profiles.system.path = deployPkgs.deploy-rs.lib.activate.nixos self.nixosConfigurations.smolboi;
}; };
zeus = {
hostname = "zeus";
profiles.system.path = deployPkgs.deploy-rs.lib.activate.nixos self.nixosConfigurations.zeus;
};
orangepihole = { orangepihole = {
hostname = "orangepihole"; hostname = "orangepihole";
profiles.system.path = deployAarch64Pkgs.deploy-rs.lib.activate.nixos self.nixosConfigurations.orangepihole; profiles.system.path = deployAarch64Pkgs.deploy-rs.lib.activate.nixos self.nixosConfigurations.orangepihole;

View file

@ -28,6 +28,7 @@
DNS = "10.42.69.2"; DNS = "10.42.69.2";
EmitRouter = true; EmitRouter = true;
Router = "10.42.69.1"; Router = "10.42.69.1";
SendOption = [ "15:string:icanttype.org" "119:string:icanttype.org" ];
}; };
networkConfig.IPv6SendRA = true; networkConfig.IPv6SendRA = true;
ipv6SendRAConfig.RouterLifetimeSec = 0; ipv6SendRAConfig.RouterLifetimeSec = 0;