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
|
let
|
||||||
cfg = config.magic_rb.packageCollections.wine;
|
cfg = config.magic_rb.packageCollections.wine;
|
||||||
inherit (config.magic_rb.pkgs) nixpkgs-unstable;
|
inherit (config.magic_rb.pkgs) nixpkgs-unstable;
|
||||||
|
|
||||||
|
combineWines = wines:
|
||||||
|
map (wine: pkgs.writeShellScriptBin wine.name
|
||||||
|
''
|
||||||
|
${wine}/bin/wine "$@"
|
||||||
|
''
|
||||||
|
) wines;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
options.magic_rb.packageCollections.wine = {
|
options.magic_rb.packageCollections.wine = {
|
||||||
|
@ -12,8 +19,8 @@ in
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
winetricks
|
winetricks
|
||||||
] ++ (with nixpkgs-unstable; [
|
] ++ combineWines (with nixpkgs-unstable; [
|
||||||
wineWowPackages.staging
|
wine-tkg wineWowPackages.staging
|
||||||
]);
|
]);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue