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

@ -1,45 +0,0 @@
{
config,
pkgs,
lib,
...
}:
let
shadowshocks-port = 8388;
p = import ../parameters.nix;
in
{
age.secrets = {
shadowshocks-password.file = ../../secrets/shadowshocks-password.age;
tailscale-authKey.file = ../../secrets/tailscale-authKey.age;
};
my = {
networking = {
shadowshocks = {
enable = true;
port = shadowshocks-port;
passwordFile = config.age.secrets.shadowshocks-password.path;
};
tailscale = {
enable = true;
magicDNSDomain = p.domains.tsDns;
authKeyFile = config.age.secrets.tailscale-authKey.path;
};
};
utils = {
commons.enable = true;
commons.gc.enable = true;
lxc-standard.enable = true;
};
virtualisation.proxmox.enable = true;
};
system.stateVersion = "24.11";
}