Compare commits
2 commits
2d4374899c
...
135cd0642b
| Author | SHA1 | Date | |
|---|---|---|---|
| 135cd0642b | |||
| 3733eb8b3a |
4 changed files with 44 additions and 0 deletions
|
|
@ -17,6 +17,12 @@
|
||||||
devices = ["steamdeck" "server" "pc" "winmax2"];
|
devices = ["steamdeck" "server" "pc" "winmax2"];
|
||||||
path = "~/.local/share/Steam/steamapps/common/Hatsune Miku Project DIVA Mega Mix Plus/mods/";
|
path = "~/.local/share/Steam/steamapps/common/Hatsune Miku Project DIVA Mega Mix Plus/mods/";
|
||||||
};
|
};
|
||||||
|
"project-eden-saves" = {
|
||||||
|
label = "Project Eden saves";
|
||||||
|
id = "xa3qx-3ax5k";
|
||||||
|
devices = ["server" "pc" "winmax2" "steamdeck"];
|
||||||
|
path = "~/.local/share/Steam/steamapps/compatdata/1761390/pfx/drive_c/users/steamuser/AppData/Roaming/EDEN/";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
home-manager.users.toast.home.file."steam-201810-ignore" = {
|
home-manager.users.toast.home.file."steam-201810-ignore" = {
|
||||||
target = ".local/share/Steam/steamapps/compatdata/201810/pfx/drive_c/users/steamuser/Saved Games/MachineGames/Wolfenstein The New Order/.stignore";
|
target = ".local/share/Steam/steamapps/compatdata/201810/pfx/drive_c/users/steamuser/Saved Games/MachineGames/Wolfenstein The New Order/.stignore";
|
||||||
|
|
|
||||||
31
roles/server/changedetection-io.nix
Executable file
31
roles/server/changedetection-io.nix
Executable file
|
|
@ -0,0 +1,31 @@
|
||||||
|
{...}: {
|
||||||
|
services.changedetection-io = {
|
||||||
|
enable = true;
|
||||||
|
baseURL = "changedetection.everest.tailscale";
|
||||||
|
behindProxy = true;
|
||||||
|
playwrightSupport = true;
|
||||||
|
};
|
||||||
|
systemd.services.changedetection-io.serviceConfig.Environment = [
|
||||||
|
"HIDE_REFERER=false"
|
||||||
|
];
|
||||||
|
|
||||||
|
# Add a record for changedetection-io
|
||||||
|
services.headscale.settings.dns.extra_records = [
|
||||||
|
{
|
||||||
|
name = "changedetection.everest.tailscale";
|
||||||
|
type = "A";
|
||||||
|
value = "100.100.0.1";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
# Set up caddy as the reverse proxy for changedetection-io
|
||||||
|
services.caddy.virtualHosts.changedetection-io = {
|
||||||
|
hostName = "changedetection.everest.tailscale";
|
||||||
|
extraConfig = ''
|
||||||
|
import tailscale
|
||||||
|
reverse_proxy localhost:5000 {
|
||||||
|
header_up Referer {header.Referer}
|
||||||
|
}
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -16,5 +16,6 @@
|
||||||
./rust_motd.nix
|
./rust_motd.nix
|
||||||
./minecraft.nix
|
./minecraft.nix
|
||||||
./adguard.nix
|
./adguard.nix
|
||||||
|
./changedetection-io.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -38,6 +38,12 @@
|
||||||
devices = ["server" "pc" "winmax2" "imac"];
|
devices = ["server" "pc" "winmax2" "imac"];
|
||||||
path = "${config.services.syncthing.dataDir}/school-things";
|
path = "${config.services.syncthing.dataDir}/school-things";
|
||||||
};
|
};
|
||||||
|
"project-eden-saves" = {
|
||||||
|
label = "Project Eden saves";
|
||||||
|
id = "xa3qx-3ax5k";
|
||||||
|
devices = ["server" "pc" "winmax2" "steamdeck"];
|
||||||
|
path = "${config.services.syncthing.dataDir}/project-eden-saves";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
systemd.services.syncthing.serviceConfig = {
|
systemd.services.syncthing.serviceConfig = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue