nixos-config/modules/system/sunshine-workstation/default.nix
2024-10-06 14:57:34 +02:00

14 lines
204 B
Nix

{ pkgs, ... }:
{
services.sunshine = {
enable = true;
autoStart = true;
capSysAdmin = true;
openFirewall = true;
};
environment.systemPackages =
(with pkgs; [
amf
]);
}