From 073bba49e3cb705ca3573495c4a2d6066932499a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vili=20Sinerv=C3=A4?= Date: Mon, 9 Jun 2025 00:39:57 +0300 Subject: [PATCH] Adjust minimal installer image --- hosts/installer-minimal/configuration.nix | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/hosts/installer-minimal/configuration.nix b/hosts/installer-minimal/configuration.nix index d4a4c5a..a960dc1 100644 --- a/hosts/installer-minimal/configuration.nix +++ b/hosts/installer-minimal/configuration.nix @@ -1,22 +1,10 @@ -{ - pkgs, - lib, - nixpkgs-flake, - ... -}: +{ lib, nixpkgs-flake, ... }: { imports = [ "${nixpkgs-flake}/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix" ../../shared/base.nix ]; - environment.systemPackages = ( - with pkgs; - [ - cryptsetup - ] - ); - isoImage.squashfsCompression = "gzip -Xcompression-level 1"; networking.networkmanager.enable = lib.mkForce false;