Evie Litherland-Smith
c96b2797e0
Move steam config to separate file, import by Vanguard. Move work config up one level (system rather than home) to config allowUnfreePredicate for NoMachine. Install teams and twinkle on desktop by default.
17 lines
328 B
Nix
17 lines
328 B
Nix
{ lib, ... }:
|
|
{
|
|
imports = [ ./module.nix ];
|
|
nixpkgs.config.allowUnfreePredicate =
|
|
pkg:
|
|
builtins.elem (lib.getName pkg) [
|
|
"steam-original"
|
|
"steam-run"
|
|
"steamcmd"
|
|
];
|
|
services.satisfactory-server = {
|
|
enable = true;
|
|
openFirewall = true;
|
|
# launchOptions = "-multihome=0.0.0.0";
|
|
};
|
|
}
|