Files
nixos-config/modules/system/nixpkgs.nix
T
2025-10-18 21:43:14 +02:00

16 lines
362 B
Nix

{ config, lib, pkgs, modulesPath, ... }:
{
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
# Allow insecure packages
nixpkgs.config.permittedInsecurePackages = [
"qtwebengine-5.15.19" # Required for teamspeak_client
];
# Overlay different packages on top of nixpkgs
nixpkgs.overlays = [
(import ../../overlays/pkgs.nix)
];
}