flake/hosts/dust/anti-feature.nix

34 lines
647 B
Nix
Raw Normal View History

{ lib, ... }:
{
2024-07-23 16:14:27 +00:00
nixpkgs.config = {
allowAliases = false;
allowNonSource = false;
allowNonSourcePredicate =
pkg:
2024-07-23 16:14:27 +00:00
lib.elem (lib.getName pkg) [
"cargo-bootstrap"
"cef-binary"
"dart"
2024-09-06 11:51:22 +00:00
"go"
2024-09-16 05:24:22 +00:00
"osu-lazer-bin"
2024-07-23 16:14:27 +00:00
"rustc-bootstrap"
"rustc-bootstrap-wrapper"
"sof-firmware"
"temurin-bin"
];
allowUnfree = false;
allowUnfreePredicate =
pkg:
2024-07-23 16:14:27 +00:00
lib.elem (lib.getName pkg) [
"fcitx5-pinyin-minecraft"
"fcitx5-pinyin-moegirl"
2024-09-16 05:24:22 +00:00
"osu-lazer-bin"
"steam"
"steam-original"
"steam-run"
2024-07-23 16:14:27 +00:00
];
};
}