nixos-config/modules/system/sunshine-steamdeck/default.nix
Mohamed C. 6276ed949d
Some checks are pending
Flake.lock / build (push) Waiting to run
more sunshine modules
2024-10-06 17:29:09 +02:00

14 lines
204 B
Nix

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