From 10df44a8981fab579a3f4aa0769f0a970dec64b5 Mon Sep 17 00:00:00 2001 From: Lumpiasty Date: Fri, 24 Apr 2026 03:41:05 +0200 Subject: [PATCH] add ventoy and efibootmgr --- home-modules/pc.nix | 1 + modules/system/nixpkgs.nix | 5 +++++ modules/system/shell.nix | 1 + 3 files changed, 7 insertions(+) diff --git a/home-modules/pc.nix b/home-modules/pc.nix index 2a6ebeb..caa06f7 100644 --- a/home-modules/pc.nix +++ b/home-modules/pc.nix @@ -28,6 +28,7 @@ pwgen siyuan gimp + ventoy-full-qt ]; programs.librewolf.enable = true; services.easyeffects.enable = true; diff --git a/modules/system/nixpkgs.nix b/modules/system/nixpkgs.nix index d4e01dd..15bbaf7 100644 --- a/modules/system/nixpkgs.nix +++ b/modules/system/nixpkgs.nix @@ -8,4 +8,9 @@ nixpkgs.overlays = [ (import ../../overlays/pkgs.nix) ]; + + # Ventoy has some blobs making it insecure + nixpkgs.config.permittedInsecurePackages = [ + "ventoy-qt5-1.1.10" + ]; } \ No newline at end of file diff --git a/modules/system/shell.nix b/modules/system/shell.nix index 437c03d..a046f13 100644 --- a/modules/system/shell.nix +++ b/modules/system/shell.nix @@ -10,6 +10,7 @@ tree usbutils pciutils + efibootmgr ]; nix.settings.experimental-features = [ "nix-command" "flakes" ];