mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 10:06:13 +01:00
d3e46e5413
Signed-off-by: Magic_RB <magic_rb@redalder.org>
20 lines
459 B
Nix
20 lines
459 B
Nix
{ config, lib, pkgs, ... }:
|
|
with lib;
|
|
let
|
|
cfg = config.magic_rb.packageCollections.wine;
|
|
inherit (config.magic_rb.pkgs) nixpkgs-unstable;
|
|
in
|
|
{
|
|
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
|
|
] ++ (with nixpkgs-unstable; [
|
|
wineWowPackages.staging
|
|
]);
|
|
};
|
|
}
|