From 678676793a3b7bcc62a4c922bf5e5d52d15e806e Mon Sep 17 00:00:00 2001 From: satr14 Date: Fri, 1 May 2026 16:05:12 +0700 Subject: [PATCH] fix ventoy warning --- flake.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/flake.nix b/flake.nix index 8130e57..0c8d584 100644 --- a/flake.nix +++ b/flake.nix @@ -6,18 +6,18 @@ url = "github:nix-community/home-manager/master"; inputs.nixpkgs.follows = "nixpkgs"; }; - + gl.url = "github:nix-community/nixGL"; ctp.url = "github:catppuccin/nix"; }; - outputs = inputs: let + outputs = inputs: let pkgs = import inputs.nixpkgs { system = "x86_64-linux"; overlays = [ inputs.gl.overlay ]; config = { allowUnfree = true; - permittedInsecurePackages = [ "ventoy-qt5-1.1.10" ]; + permittedInsecurePackages = [ "ventoy-qt5-1.1.12" ]; }; }; args = { @@ -32,7 +32,7 @@ inputs.ctp.nixosModules.catppuccin ]; }; - + nixosConfigWithHome = host: inputs.nixpkgs.lib.nixosSystem { inherit pkgs; specialArgs = args // { hostname = host; }; @@ -50,7 +50,7 @@ } ]; }; - + homeConfig = host: inputs.hm.lib.homeManagerConfiguration { extraSpecialArgs = args // { hostname = host; }; inherit pkgs;