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

17 lines
319 B
Nix

{ lib, config, pkgs, ... }:
let
inherit (lib) mkEnableOption mkIf;
cfg = config.ooknet.desktop.gaming.bottles;
in
{
options.ooknet.desktop.gaming.bottles.enable = mkEnableOption "Enable bottles home-manager modules";
config = mkIf cfg.enable {
home.packages = with pkgs; [
bottles
];
};
}