diff --git a/nixos-bootstrap/installer-config.nix b/nixos-bootstrap/installer-config.nix index baa649e..cfe1175 100644 --- a/nixos-bootstrap/installer-config.nix +++ b/nixos-bootstrap/installer-config.nix @@ -18,8 +18,15 @@ just curl wget + disko ]; nixpkgs.hostPlatform = "x86_64-linux"; boot.supportedFilesystems = lib.mkForce ["zfs" "btrfs" "reiserfs" "vfat" "f2fs" "xfs" "ntfs" "cifs"]; + + networking = { + wireless.enable = lib.mkForce false; + networkmanager.enable = true; + enableIPv6 = false; + }; } diff --git a/nixos-bootstrap/justfile b/nixos-bootstrap/justfile index 9307b07..8109246 100644 --- a/nixos-bootstrap/justfile +++ b/nixos-bootstrap/justfile @@ -2,4 +2,4 @@ default: just -l iso: - nix build .#nixosConfigurations.ISO.config.system.build.isoImage -o install.iso + nix build .#nixosConfigurations.ISO.config.system.build.isoImage && ln -sf result/iso/*.iso install.iso