Huge Typo!!!

This commit is contained in:
pazpi 2025-03-20 21:57:35 +01:00
parent 830670c8f0
commit abbad538be
6 changed files with 13 additions and 13 deletions

View file

@ -200,12 +200,12 @@ in
# specialArgs = { };
};
shadowshocks = nixpkgs.lib.nixosSystem {
shadowsocks = nixpkgs.lib.nixosSystem {
pkgs = pkgs "x86_64-linux";
modules = [
myModules
proxmoxModule
./shadowshocks
./shadowsocks
agenix.nixosModules.default
];
# specialArgs = { };

View file

@ -116,12 +116,12 @@ in
];
};
shadowshocks.deployment = {
targetHost = hosts.shadowshocks;
shadowsocks.deployment = {
targetHost = hosts.shadowsocks;
tags = [
"lxc"
"bacco"
"shadowshocks"
"shadowsocks"
];
};

View file

@ -14,7 +14,7 @@
pve02 = "node.internal";
dns01 = "192.168.1.2";
dns02 = "192.168.1.3";
shadowshocks = "shadowshocks.internal";
shadowsocks = "shadowsocks.internal";
mpd = "192.168.1.7";
librechat = "librechat.internal";
};

View file

@ -5,13 +5,13 @@
...
}:
let
shadowshocks-port = 8388;
shadowsocks-port = 8388;
p = import ../parameters.nix;
in
{
age.secrets = {
shadowshocks-password.file = ../../secrets/shadowshocks-password.age;
shadowsocks-password.file = ../../secrets/shadowsocks-password.age;
tailscale-authKey.file = ../../secrets/tailscale-authKey.age;
};
@ -19,10 +19,10 @@ in
networking = {
shadowshocks = {
shadowsocks = {
enable = true;
port = shadowshocks-port;
passwordFile = config.age.secrets.shadowshocks-password.path;
port = shadowsocks-port;
passwordFile = config.age.secrets.shadowsocks-password.path;
};
tailscale = {