dotfiles/nix/home-manager/modules/wine.nix

27 lines
617 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
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
2021-02-26 10:24:58 +01:00
{
options.magic_rb.packageCollections.wine = {
enable = mkEnableOption "Enable wine package collection, contains wine-staging and winetricks";
};
config = mkIf cfg.enable {
home.packages = with pkgs; [
winetricks
] ++ combineWines (with nixpkgs-unstable; [
wine-tkg wineWowPackages.staging
]);
};
2021-02-26 10:24:58 +01:00
}