my over complex system configurations
4

Configure Feed

Select the types of activity you want to include in your feed.

iso/nixpkgs: cleanup

isabel (Jun 19, 2026, 3:22 PM +0100) 09778c8b dd0b70e0

+16 -4
+16 -4
modules/iso/nixpkgs.nix
··· 1 - # keep up to date with our "base" config 1 + # refer to ../base/nixpkgs.nix for proper docs 2 + { lib, ... }: 2 3 { 3 - nixpkgs.config = { 4 - allowUnfree = true; 5 - allowAliases = false; 4 + nixpkgs = { 5 + config = { 6 + allowUnfree = true; 7 + allowVariants = false; 8 + allowBroken = false; 9 + permittedInsecurePackages = [ ]; 10 + allowUnsupportedSystem = false; 11 + allowAliases = false; 12 + }; 13 + 14 + # the upstream installer profile adds one overlay to trim mbrola voices for 15 + # speechd; drop it since i remove speechd anyways. 16 + # <https://github.com/NixOS/nixpkgs/blob/b75227dfa10fe49fd0cae2f5ef82e97babd16c44/nixos/modules/profiles/installation-device.nix#L136-L144> 17 + overlays = lib.modules.mkForce [ ]; 6 18 }; 7 19 }