From 9df3c02e55353c69cc6cec8c4a996b21b8e3220a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vili=20Sinerv=C3=A4?= Date: Tue, 15 Oct 2024 20:11:43 +0300 Subject: [PATCH] Fix custom ISO onlykey --- misc/custom-iso-base.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/misc/custom-iso-base.nix b/misc/custom-iso-base.nix index c6c6875..743736f 100644 --- a/misc/custom-iso-base.nix +++ b/misc/custom-iso-base.nix @@ -59,8 +59,10 @@ in (with pkgs; [ (onlykey.override (prev: { node_webkit = prev.node_webkit.overrideAttrs { - src = fetchurl { url = "https://dl.nwjs.io/v0.71.1/nwjs-v0.71.1-linux-x64.tar.gz"; }; - hash = "sha256-bnObpwfJ6SNJdOvzWTnh515JMcadH1+fxx5W9e4gl/4="; + src = fetchurl { + url = "https://dl.nwjs.io/v0.71.1/nwjs-v0.71.1-linux-x64.tar.gz"; + hash = "sha256-bnObpwfJ6SNJdOvzWTnh515JMcadH1+fxx5W9e4gl/4="; + }; }; }))