Guanran Wang
8ee5e9dd3e
- Following RFC 952 and RFC 1123. Hostnames are not case-sensitive; however, uppercase letters were typically avoided to enhance readability. - I accidentally rm -rf'ed ./git, had to re-commit everything
26 lines
573 B
Nix
26 lines
573 B
Nix
{lib, ...}: {
|
|
nixpkgs.config = {
|
|
allowNonSource = false;
|
|
allowNonSourcePredicate = pkg:
|
|
builtins.elem (lib.getName pkg) [
|
|
"adoptopenjdk-hotspot-bin"
|
|
"cargo-bootstrap"
|
|
"cef-binary"
|
|
"rustc-bootstrap"
|
|
"rustc-bootstrap-wrapper"
|
|
"sof-firmware"
|
|
"spotify"
|
|
"vscodium"
|
|
];
|
|
|
|
allowUnfree = false;
|
|
allowUnfreePredicate = pkg:
|
|
builtins.elem (lib.getName pkg) [
|
|
"nvidia-x11"
|
|
"spotify"
|
|
"steam"
|
|
"steam-original"
|
|
"xow_dongle-firmware"
|
|
];
|
|
};
|
|
}
|