jeeves-jr conversion

This commit is contained in:
Richie Cahill 2024-08-09 19:21:06 -04:00
parent 622317ca46
commit bc44ead6f3
2 changed files with 23 additions and 6 deletions

View File

@ -2,18 +2,13 @@
{
imports = [
../../users/richie/global/ssh.nix
../../users/richie/global/zerotier.nix
./arch_mirror.nix
./docker
./home_assistant.nix
./networking.nix
./services.nix
];
networking = {
hostId = "1beb3026";
firewall.enable = false;
};
boot = {
zfs.extraPools = [ "Main" ];
filesystem = "zfs";

View File

@ -0,0 +1,22 @@
{
networking = {
hostId = "1beb3026";
firewall.enable = false;
};
systemd.network = {
enable = true;
networks = {
"10-lan" = {
matchConfig.Name = "enp4s0";
DHCP = "yes";
linkConfig.RequiredForOnline = "routable";
};
};
};
services.zerotierone = {
enable = true;
joinNetworks = [ "e4da7455b2ae64ca" ];
};
}