dotfiles/nix/modules/nixos/features/gaming.nix

19 lines
292 B
Nix
Raw Normal View History

2024-11-26 08:40:00 +00:00
{
config,
lib,
pkgs,
...
}:
2024-12-10 21:40:33 +00:00
with lib;
2024-11-26 08:40:00 +00:00
{
2024-12-10 21:40:33 +00:00
options.features.desktop.gaming.enable = mkEnableOption "Enable games";
2024-11-26 08:40:00 +00:00
2024-12-10 21:40:33 +00:00
config = mkIf config.features.desktop.gaming.enable {
2024-11-26 08:40:00 +00:00
programs.steam.enable = true;
2025-01-12 11:17:31 +00:00
environment.systemPackages = with pkgs; [ nixpkgs-2411.zeroad ];
2024-11-26 08:40:00 +00:00
};
}