sunshine & vscode splitted to personal modules

This commit is contained in:
2026-03-11 20:11:02 +03:00
parent a32d9c7da9
commit 4a32000313
4 changed files with 42 additions and 8 deletions

12
apps/sunshine.nix Normal file
View File

@@ -0,0 +1,12 @@
{ config, pkgs, lib, ... }:
{
services.sunshine = {
enable = true;
autoStart = true;
capSysAdmin = true; # only needed for Wayland -- omit this when using with Xorg
openFirewall = true;
};
environment.systemPackages = [
pkgs.gnome-randr
];
}