1
0
Fork 0

Hosts: remove SyncthingTray option

This commit is contained in:
Aires 2024-09-03 11:53:45 -04:00
parent d3a0160578
commit 64c5d81106
3 changed files with 4 additions and 11 deletions

View file

@ -84,7 +84,6 @@ in
syncthing = {
enable = true;
autostart = true;
enableTray = true;
};
};
};

View file

@ -76,9 +76,9 @@ in
];
kernelParams = [
"pci=hpiosize=0" # Prevent ACPI interrupt storm. See https://github.com/linux-surface/linux-surface/wiki/Surface-Pro-9#acpi-interrupt-storm
"pci=hpiosize=0" # Prevent ACPI interrupt storm. See https://github.com/linux-surface/linux-surface/wiki/Surface-Pro-9#acpi-interrupt-storm
"nvme_core.default_ps_max_latency_us=0" # Disable NVME powersaving to prevent system stuttering. See https://forums.linuxmint.com/viewtopic.php?t=392387
];
];
};
# Configure the main filesystem.

View file

@ -114,17 +114,11 @@ in
users = {
aires = {
enable = true;
services.syncthing = {
enable = true;
enableTray = false; # Recent versions of STT don't recognize Gnome's tray. Uninstalling for now.
};
services.syncthing.enable = true;
};
gremlin = {
enable = true;
services.syncthing = {
enable = true;
enableTray = false;
};
services.syncthing.enable = true;
};
};
};