Add some gaming-server conf

This commit is contained in:
Vili Sinervä 2025-05-09 22:02:19 +03:00
parent 5cf6cd44a2
commit 29eb27cce6
No known key found for this signature in database
GPG key ID: DF8FEAF54EFAC996
2 changed files with 20 additions and 1 deletions

View file

@ -6,7 +6,8 @@
../base.nix
../desktop.nix
../users/vili.nix
../hardware-specific/nvidia.nix
../services/gaming-server.nix
# ../hardware-specific/nvidia.nix
];
users.users.vili.hashedPasswordFile = lib.mkForce null;

View file

@ -0,0 +1,18 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
parsec-bin
];
programs.steam = {
enable = true;
extraCompatPackages = with pkgs; [ proton-ge-bin ];
};
services.sunshine = {
enable = true;
autoStart = true;
openFirewall = true;
};
}