System/modules/darwin/games.nix

12 lines
223 B
Nix
Raw Normal View History

2023-07-22 03:18:45 -04:00
{ config, lib, pkgs, ... }:
let np = config.nathan.programs;
in with lib; {
# Install media applications
2023-08-23 07:13:04 -04:00
config = mkIf np.games.enable {
homebrew.casks = [{
name = "steam";
greedy = true;
}];
};
2023-07-22 03:18:45 -04:00
}