feat(homeModules:gaming): add bottles and wine related pkgs
This commit is contained in:
parent
b821ac5226
commit
94d786e1d0
5 changed files with 39 additions and 3 deletions
17
home/modules/desktop/gaming/bottles/default.nix
Normal file
17
home/modules/desktop/gaming/bottles/default.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{ lib, config, pkgs, ... }:
|
||||
|
||||
let
|
||||
inherit (lib) mkEnableOption mkIf;
|
||||
cfg = config.homeModules.desktop.gaming.bottles;
|
||||
in
|
||||
|
||||
{
|
||||
options.homeModules.desktop.gaming.bottles.enable = mkEnableOption "Enable bottles home-manager modules";
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
home.packages = with pkgs; [
|
||||
bottles
|
||||
];
|
||||
};
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue