Add Shadowsocks proxy service

This commit is contained in:
pazpi 2025-03-16 17:53:06 +01:00
parent 854b6374d7
commit 26165af972
7 changed files with 70 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{
config,
pkgs,
lib,
...
}:
{
age.secrets.shadowshocks-password.file = ../../secrets/shadowshocks-password.age;
my = {
utils = {
commons.enable = true;
commons.gc.enable = true;
lxc-standard.enable = true;
};
virtualisation.proxmox.enable = true;
};
services.shadowsocks = {
enable = true;
passwordFile = config.age.secrets.shadowshocks-password.path;
port = 8388;
};
system.stateVersion = "24.11";
}