7 lines
186 B
Nix
7 lines
186 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
let np = config.nathan.programs;
|
||
|
in with lib; {
|
||
|
# Install media applications
|
||
|
config = mkIf np.games.enable { homebrew.casks = [{ name = "steam"; }]; };
|
||
|
}
|