diff --git a/workstation/configuration.nix b/workstation/configuration.nix index f55dd03..b1fc700 100644 --- a/workstation/configuration.nix +++ b/workstation/configuration.nix @@ -182,17 +182,7 @@ ]; - # Some programs need SUID wrappers, can be configured further or are - # started in user sessions. - # programs.mtr.enable = true; - # programs.gnupg.agent = { - # enable = true; - # enableSSHSupport = true; - # }; - - # List services that you want to enable: - - # Enable the OpenSSH daemon. + # Enable the OpenSSH daemon. services.openssh.enable = true; # zfs options diff --git a/workstation/network.nix b/workstation/network.nix new file mode 100644 index 0000000..351050a --- /dev/null +++ b/workstation/network.nix @@ -0,0 +1,38 @@ +{ pkgs, configs, ... }: +{ + systemd.network = { + enable = true; + netdevs = { + "10-bond0" = { + netdevConfig = { + Kind = "bond"; + Name = "bond0"; + }; + bondConfig = { + Mode = "802.3ad"; + TransmitHashPolicy = "layer3+4"; + }; + }; + }; + networks = { + "30-enp4s0" = { + matchConfig.Name = "enp4s0"; + DHCP = "ipv4"; + networkConfig.Bond = "bond0"; + }; + "30-enp6s0" = { + matchConfig.Name = "enp6s0"; + DHCP = "ipv4"; + networkConfig.Bond = "bond0"; + }; + "40-bond0" = { + matchConfig.Name = "bond0"; + linkConfig = { + RequiredForOnline = "carrier"; + }; + + networkConfig.LinkLocalAddressing = "no"; + }; + }; + }; +} diff --git a/workstation/network.nix~ b/workstation/network.nix~ new file mode 100644 index 0000000..a167edf --- /dev/null +++ b/workstation/network.nix~ @@ -0,0 +1,10 @@ +{ plgs, configs, ... }: +{ + systemd.network = { + enable = true; + networks."10-lan" = { + matchConfig.Name = "lan"; + networkConfig.DHCP = "ipv4"; + }; + }; +}