From 206cfe1fdb1164e75b346a6ac6e40fa09f760bed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gy=C3=B6rgy=20Kurucz?= Date: Mon, 18 Nov 2024 18:48:23 +0100 Subject: [PATCH] Update nixpkgs For some reason samba, pulled in by cifs-utils, fails to cross-compile. Disable cifs support in the installer to work around this. The ISO should be reproducible and have the following SHA256 hash: 5cffd38fddd45c7e784da99f479ae777323841b62df8787fa63443455729183d --- flake.lock | 6 +++--- iso.nix | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/flake.lock b/flake.lock index f715d9d..71978b3 100644 --- a/flake.lock +++ b/flake.lock @@ -2,11 +2,11 @@ "nodes": { "nixpkgs": { "locked": { - "lastModified": 1730199379, - "narHash": "sha256-lOzcBTjlCFsQKf3U2iN19NhsEkBn0zxCwrcpxcTk3Z0=", + "lastModified": 1731951811, + "narHash": "sha256-fSxubVm9MP+uf95rpoLRpgkKoLeeRLr+nktZaSX3K48=", "owner": "nixos", "repo": "nixpkgs", - "rev": "91d052e89a804d6ab0e655d54d51300a62492b84", + "rev": "4a2fe438081e653fb0556c8fcc036bc003306413", "type": "github" }, "original": { diff --git a/iso.nix b/iso.nix index 5cc0b89..c95ff32 100644 --- a/iso.nix +++ b/iso.nix @@ -3,6 +3,7 @@ { isoImage.isoName = lib.mkForce "cd.iso"; boot.supportedFilesystems.zfs = lib.mkForce false; + boot.supportedFilesystems.cifs = lib.mkForce false; # For some reason the adsp booting up messes with USB boot, so disable it. boot.blacklistedKernelModules = [ "qcom_q6v5_pas" ];