fixed piped?

This commit is contained in:
Chaos 2023-05-25 13:41:20 +01:00
parent 1b080446c0
commit 43a5eae39f
No known key found for this signature in database
7 changed files with 32 additions and 18 deletions

View file

@ -13,11 +13,11 @@
]
},
"locked": {
"lastModified": 1682063650,
"narHash": "sha256-VaDHh2z6xlnTHaONlNVHP7qEMcK5rZ8Js3sT6mKb2XY=",
"lastModified": 1683779844,
"narHash": "sha256-sIeOU0GsCeQEn5TpqE/jFRN4EGsPsjqVRsPdrzIDABM=",
"owner": "serokell",
"repo": "deploy-rs",
"rev": "c2ea4e642dc50fd44b537e9860ec95867af30d39",
"rev": "c80189917086e43d49eece2bd86f56813500a0eb",
"type": "github"
},
"original": {
@ -119,11 +119,11 @@
]
},
"locked": {
"lastModified": 1682977601,
"narHash": "sha256-F1Va/Uiw2tVNn27FLqWyBkiqDyIm/eCamw9wA/GK8Fw=",
"lastModified": 1684321175,
"narHash": "sha256-V4EbM+jK7pvjKBaj0dgAiW9ultzDE27Nz5fRyu/ceMk=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "0e4c33d76006c9080d2f228ba1c2308e3e4d7be6",
"rev": "59659243cd4ababda605e79b4a9c2e6d83e24c86",
"type": "github"
},
"original": {
@ -176,11 +176,11 @@
},
"nixpkgs-unstable": {
"locked": {
"lastModified": 1683014792,
"narHash": "sha256-6Va9iVtmmsw4raBc3QKvQT2KT/NGRWlvUlJj46zN8B8=",
"lastModified": 1684215771,
"narHash": "sha256-fsum28z+g18yreNa1Y7MPo9dtps5h1VkHfZbYQ+YPbk=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "1a411f23ba299db155a5b45d5e145b85a7aafc42",
"rev": "963006aab35e3e8ebbf6052b6bf4ea712fdd3c28",
"type": "github"
},
"original": {
@ -192,11 +192,11 @@
},
"nur": {
"locked": {
"lastModified": 1683123657,
"narHash": "sha256-/RRubLn+P61uwruoELBD/xZtwdyjgLUH0YosbiV67lc=",
"lastModified": 1684328344,
"narHash": "sha256-kkigG+7LBV7KxCh0iR6f0sWfu6/H1oZwvLyvlEgldXw=",
"owner": "nix-community",
"repo": "NUR",
"rev": "bf213c6f18981ae52cc11d5fc07f8e94c9f5755e",
"rev": "12976f46a70a9d94ad8a79f2b63ade465a7d1ad5",
"type": "github"
},
"original": {

View file

@ -14,7 +14,6 @@
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
home-manager-unstable.url = "github:nix-community/home-manager";
home-manager-unstable.inputs.nixpkgs.follows = "nixpkgs-unstable";
home-manager-unstable.inputs.utils.follows = "flake-utils";
#nix-darwin-unstable.url = "github:lnl7/nix-darwin/master";
#nix-darwin-unstable.inputs.nixpkgs.follows = "nixpkgs-unstable";

View file

@ -21,6 +21,7 @@
hosts.hetzner-vm.profiles.gitlab-static-sites
hosts.hetzner-vm.profiles.misskey
hosts.hetzner-vm.profiles.wireguard
hosts.hetzner-vm.profiles.nginx-misc
./networking.nix
./hardware.nix

View file

@ -0,0 +1,12 @@
{...}: {
services.nginx.virtualHosts."tablet-dev.owo.monster" = {
forceSSL = true;
enableACME = true;
locations = {
"/" = {
proxyPass = "http://10.69.42.2:8088";
proxyWebsockets = true;
};
};
};
}

View file

@ -41,6 +41,8 @@
networking.firewall.enable = true;
networking.firewall.allowPing = true;
networking.firewall.allowedTCPPorts = [8088];
networking.hostName = "tablet";
time.timeZone = "Europe/London";

View file

@ -1,14 +1,14 @@
{
"frontend": {
"rev": "eebd27eee06283ea937a28eaec2891096d1b14d4",
"rev": "3dfdf8806f9f9e6aa41e285778f79ba35daee597",
"sha256": "sha256-iVMsW+H068B/W965oPo3YnQGhEMI8CrLVpkG1kSm7rs="
},
"backend": {
"rev": "e6f9bf884941b3a1bfe257ed3eb7f20fc1aa9dea",
"rev": "5d085ce59235ecaf875ccf8a1d311b85a1ca850a",
"sha256": "sha256-NZwvnRcaQnjtfWvZQfXMCKj7DYEdzZaRcQFuUyfENDM="
},
"proxy": {
"rev": "97dd7d40759847a3d42eca59c4e2334f55896930",
"rev": "ab1f54bf518bd1f75170eeb08e1ab96516587e55",
"sha256": "sha256-7pCOs48xAYFyOukXKHls5AQVP05gVZqrpLbvGWchSro="
}
}

View file

@ -4,6 +4,6 @@ SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
REPO_ROOT="${SCRIPT_DIR}/.."
cd $REPO_ROOT
#./overlay/misskey/update.sh
./overlay/piped/update.sh
# TODO
#./overlay/piped/update.sh
nix flake update