This repository has been archived on 2023-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
Files
dotfiles/modules/desktop/gaming/bottles.nix
2023-01-07 22:13:50 +00:00

16 lines
276 B
Nix

{ config, lib, pkgs, ... }:
with lib;
with lib.my;
let cfg = config.modules.desktop.gaming.bottles;
in {
options.modules.desktop.gaming.bottles = {
enable = mkBoolOpt false;
};
config = mkIf cfg.enable {
user.packages = with pkgs; [
bottles
];
};
}