12 lines
181 B
Nix
12 lines
181 B
Nix
|
{ config, lib, pkgs, ...} : {
|
||
|
services = {
|
||
|
synergy.client = {
|
||
|
enable = true;
|
||
|
screenName = "Alexos";
|
||
|
serverAddress = "192.168.10.106";
|
||
|
autoStart = true;
|
||
|
};
|
||
|
};
|
||
|
}
|
||
|
|