diff --git a/magpie/configuration.nix b/magpie/configuration.nix index dd8c1dc..0b77263 100644 --- a/magpie/configuration.nix +++ b/magpie/configuration.nix @@ -21,18 +21,18 @@ boot.loader.systemd-boot.configurationLimit = 2; boot.loader.efi.canTouchEfiVariables = true; boot.kernelPackages = pkgs.linuxPackages_latest; + boot.kernelParams = ["ip=dhcp"]; boot.kernel.sysctl = { "net.core.default_qdisc" = "fq"; "net.ipv4.tcp_congestion_control" = "bbr"; }; boot.initrd = { - systemd.enable = true; compressor = "zstd"; availableKernelModules = ["virtio-pci"]; + systemd.enable = true; network = { enable = true; - udhcpc.enable = true; ssh = { enable = true; hostKeys = [/etc/ssh_dummy_ed25519_key];