Cleanup with LSP guidance

This commit is contained in:
2026-02-17 15:21:54 -07:00
parent 8ef20405ba
commit 432d5df195
17 changed files with 71 additions and 53 deletions

View File

@@ -1,10 +1,6 @@
{ config, pkgs, ... }:
{ pkgs, ... }:
let
settings = import ../settings.nix;
in
{
# Hardened OpenSSH
services.openssh = {
enable = true;
ports = [ 22 ];
@@ -38,22 +34,22 @@ in
# Sunshine
services.sunshine = {
enable = true;
autoStart = true;
capSysAdmin = true;
openFirewall = true;
applications = {
apps = [
{
name = "Steam Big Picture";
cmd = "${pkgs.steam}/bin/steam -gamepadui";
}
{
name = "Desktop";
cmd = "${pkgs.coreutils}/bin/true";
}
];
};
enable = true;
autoStart = true;
capSysAdmin = true;
openFirewall = true;
applications = {
apps = [
{
name = "Steam Big Picture";
cmd = "${pkgs.steam}/bin/steam -gamepadui";
}
{
name = "Desktop";
cmd = "${pkgs.coreutils}/bin/true";
}
];
};
};
services.avahi.publish.enable = true;