2021-01-03 16:28:35 +01:00
|
|
|
{ config, lib, ... }:
|
|
|
|
let
|
|
|
|
cfg = config.sbruder.unfree;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
# Options that affect multiple modules
|
|
|
|
options.sbruder = {
|
|
|
|
unfree = {
|
|
|
|
allowAssets = lib.mkOption {
|
|
|
|
default = true;
|
|
|
|
type = lib.types.bool;
|
|
|
|
description = "Allow restricted selection of unfree assets to be installed.";
|
|
|
|
};
|
|
|
|
allowSoftware = lib.mkOption {
|
|
|
|
default = false;
|
|
|
|
type = lib.types.bool;
|
|
|
|
description = "Allow restricted selection of unfree software to be installed.";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = {
|
2021-02-27 19:55:12 +01:00
|
|
|
nixpkgs.config.allowUnfreePredicate = (pkg: lib.elem (lib.getName pkg) (
|
2021-01-03 16:28:35 +01:00
|
|
|
lib.optionals cfg.allowAssets [
|
|
|
|
"corefonts"
|
|
|
|
"vista-fonts"
|
|
|
|
"wallpaper-unfree" # defined in users/simon/modules/sway.nix
|
|
|
|
] ++ lib.optionals cfg.allowSoftware [
|
2021-07-04 20:51:28 +02:00
|
|
|
"cups-kyocera-ecosys-m552x-p502x" # exception: the file header says MIT license, but explicitly forbids modifications WTF?
|
2021-04-03 18:47:01 +02:00
|
|
|
"drone-runner-exec" # exception: same as drone.io
|
|
|
|
"drone.io" # exception: is open source (but has usage restriction)
|
|
|
|
"fahclient" # exception: for science
|
2022-04-01 18:20:46 +02:00
|
|
|
"makemkv" # exception: runs in sandbox, only way to get DRM garbage to work properly
|
2021-01-03 16:28:35 +01:00
|
|
|
"p7zip" # exception: rar source code is not free, but available; p7zip with `enableUnfree` includes it
|
2021-10-04 16:33:40 +02:00
|
|
|
|
|
|
|
# games (okay if they run sandboxed)
|
2021-10-15 15:54:48 +02:00
|
|
|
"factorio"
|
|
|
|
"factorio-headless"
|
2021-10-04 16:33:40 +02:00
|
|
|
"osu-lazer" # also is free except for one dependency
|
|
|
|
"steam"
|
|
|
|
"steam-original"
|
|
|
|
"steam-runtime"
|
2021-01-03 16:28:35 +01:00
|
|
|
]
|
|
|
|
));
|
|
|
|
};
|
|
|
|
}
|