Files
nixos-config/modules/system/nixpkgs.nix
T
2026-06-19 19:00:53 +02:00

13 lines
317 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-1.1.12"
# Temporary workaround
"librewolf-unwrapped-151.0.2-1" "librewolf-151.0.2-1"
];
}