ooknet/inputs/home/modules/desktop/gaming/bottles/default.nix

17 lines
329 B
Nix

{ 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
];
};
}