Add some gaming-server conf
This commit is contained in:
parent
5cf6cd44a2
commit
29eb27cce6
2 changed files with 20 additions and 1 deletions
|
@ -6,7 +6,8 @@
|
||||||
../base.nix
|
../base.nix
|
||||||
../desktop.nix
|
../desktop.nix
|
||||||
../users/vili.nix
|
../users/vili.nix
|
||||||
../hardware-specific/nvidia.nix
|
../services/gaming-server.nix
|
||||||
|
# ../hardware-specific/nvidia.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
users.users.vili.hashedPasswordFile = lib.mkForce null;
|
users.users.vili.hashedPasswordFile = lib.mkForce null;
|
||||||
|
|
18
services/gaming-server.nix
Normal file
18
services/gaming-server.nix
Normal 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;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue