back interdiff of round #4 and #3

chore: bump nillas to testing versions #131

deleted
opened by a.starrysky.fyi targeting main from private/minion/push-mlmuvqqtptlt
files
packetmix
ERROR
packetmix/modules/nilla-home/home.nix

Failed to calculate interdiff for this file.

ERROR
packetmix/modules/nilla-home/homes-type.nix

Failed to calculate interdiff for this file.

ERROR
packetmix/modules/nilla-home/nixos.nix

Failed to calculate interdiff for this file.

ERROR
packetmix/npins/sources.json

Failed to calculate interdiff for this file.

NEW
packetmix/inputs.nix
··· 6 6 pins = import ./npins; 7 7 8 8 settings = { 9 - nixpkgs.configuration.allowUnfree = true; 9 + nixpkgs.configuration = { 10 + allowUnfree = true; 11 + overlays = [ ./overlays/hard-fail-system.nix ]; 12 + }; 10 13 "nixos-24.11" = settings.nixpkgs; 11 14 nixos-unstable = settings.nixpkgs; 12 15 };
NEW
packetmix/overlays/hard-fail-system.nix
··· 1 + final: prev: { 2 + system = builtins.throw "'system' has been renamed to/replaced by 'stdenv.hostPlatform.system'"; 3 + }