9 lines
160 B
Nix
9 lines
160 B
Nix
{ config, pkgs, lib, ... }: {
|
|
secrets.xray-config = {};
|
|
|
|
services.xray = {
|
|
enable = true;
|
|
configFile = config.secrets.xray-config.decrypted;
|
|
};
|
|
|
|
} |