NixOS-Config/modules/system/services/pc/sunshine/default.nix

8 lines
116 B
Nix
Raw Normal View History

{ config, ... }:
2024-10-09 03:36:08 -04:00
{
2024-08-24 22:16:51 -04:00
services.sunshine = {
enable = config.system.desktop.enable;
2024-08-24 22:16:51 -04:00
autoStart = false;
};
}