From 464ae0b3b1e0ab9821baae2ab1bcebc76510aded Mon Sep 17 00:00:00 2001 From: TheWanderingCrow Date: Mon, 30 Jun 2025 08:19:46 -0400 Subject: [PATCH] updates to iso generation --- nixos-bootstrap/installer-config.nix | 7 +++++++ nixos-bootstrap/justfile | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) 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