dots/modules/games/linux.nix
Nico 3660ef23f1 chore: organise modules
Organise modules in a significantly better way with categories.
2025-05-03 16:34:35 +10:00

17 lines
286 B
Nix

{ config, lib, pkgs, ... }:
{
imports = [ ./default.nix ];
environment.systemPackages = with pkgs; [
heroic
mangohud
];
programs.steam = {
enable = true;
extraPackages = [ pkgs.gamescope ];
gamescopeSession.enable = true;
extest.enable = true;
};
}