11 lines
248 B
Nix
11 lines
248 B
Nix
{ config, lib, pkgs, modulesPath, ... }:
|
|
|
|
{
|
|
# Allow unfree packages
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
nixpkgs.config.permittedInsecurePackages = [
|
|
# Ventoy has some blobs making it insecure
|
|
"ventoy-qt5-${pkgs.ventoy.version}"
|
|
];
|
|
} |