dotfiles/nix/modules/nixos/features/gaming.nix
2025-01-15 15:02:10 +00:00

19 lines
292 B
Nix

{
config,
lib,
pkgs,
...
}:
with lib;
{
options.features.desktop.gaming.enable = mkEnableOption "Enable games";
config = mkIf config.features.desktop.gaming.enable {
programs.steam.enable = true;
environment.systemPackages = with pkgs; [ nixpkgs-2411.zeroad ];
};
}