mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-29 19:46:17 +01:00
Combine wines
Signed-off-by: Magic_RB <magic_rb@redalder.org>
This commit is contained in:
parent
5ab9980b9d
commit
2ee80a84e5
|
@ -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
|
||||
]);
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue