nix-config/roles/nixos/gaming.nix

22 lines
391 B
Nix

{
config,
pkgs,
lib,
...
}: {
programs.steam = {
enable = true;
extraCompatPackages = with pkgs; [
proton-ge-bin
];
gamescopeSession.enable = true;
};
programs.gamemode.enable = true;
hardware.steam-hardware.enable = true;
home-manager.users.${config.host.details.user} = {config, ...}: {
home.packages = with pkgs; [
discord
];
};
}