Files
dotfiles/nixos/games.nix

9 lines
182 B
Nix
Raw Normal View History

{ config, pkgs, makeEnable, ... }:
2024-09-26 14:15:27 -06:00
makeEnable config "myModules.games" false {
2018-06-18 17:12:26 -07:00
environment.systemPackages = with pkgs; [
steam
2025-04-25 13:42:13 -06:00
heroic
2018-06-18 17:12:26 -07:00
];
hardware.xone.enable = true;
2018-06-18 17:12:26 -07:00
}