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-01-07 18:29:18 +01:00
|
|
|
"osu-lazer" # exception: is mostly free (just has one unfree dependency) and runs in container
|
2021-01-03 16:28:35 +01:00
|
|
|
"p7zip" # exception: rar source code is not free, but available; p7zip with `enableUnfree` includes it
|
|
|
|
]
|
|
|
|
));
|
|
|
|
};
|
|
|
|
}
|