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

15 lines
192 B
Nix

{ lib, config, pkgs, ... }:
let
inherit (lib) mkIf;
cfg = config.ooknet.gaming.bottles;
in
{
config = mkIf cfg.enable {
home.packages = with pkgs; [
bottles
];
};
}