Combine wines

Signed-off-by: Magic_RB <magic_rb@redalder.org>
This commit is contained in:
Magic_RB 2021-12-22 23:51:17 +01:00
parent 5ab9980b9d
commit 2ee80a84e5
No known key found for this signature in database
GPG key ID: 08D5287CC5DDCA0E

View file

@ -3,6 +3,13 @@ with lib;
let
cfg = config.magic_rb.packageCollections.wine;
inherit (config.magic_rb.pkgs) nixpkgs-unstable;
combineWines = wines:
map (wine: pkgs.writeShellScriptBin wine.name
''
${wine}/bin/wine "$@"
''
) wines;
in
{
options.magic_rb.packageCollections.wine = {
@ -12,8 +19,8 @@ in
config = mkIf cfg.enable {
home.packages = with pkgs; [
winetricks
] ++ (with nixpkgs-unstable; [
wineWowPackages.staging
] ++ combineWines (with nixpkgs-unstable; [
wine-tkg wineWowPackages.staging
]);
};
}