nix-config/modules/nix/games/steam.nix
2025-07-08 17:02:34 +02:00

16 lines
282 B
Nix

{ lib, config, pkgs, ... }:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.steam.enable = mkOption {
type = types.bool;
default = false;
description = "steam support";
};
config = mkIf config.smayzy.steam {
programs.steam.enable = true;
};
}