12 lines
186 B
Nix
12 lines
186 B
Nix
|
{ config, pkgs, modulesPath, ... }:
|
||
|
{
|
||
|
imports = [ "${modulesPath}/virtualisation/amazon-image.nix" ];
|
||
|
|
||
|
services.sing-box = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
|
||
|
};
|
||
|
};
|
||
|
}
|