rico1: deploy wiki

This commit is contained in:
Adithya 2024-07-03 22:57:30 +05:30
parent 9864a926c0
commit a446cffe34
Signed by: adtya
GPG key ID: B8857BFBA2C47B9C
4 changed files with 105 additions and 2 deletions

View file

@ -262,6 +262,25 @@
"type": "github" "type": "github"
} }
}, },
"flake-utils_5": {
"inputs": {
"systems": "systems_6"
},
"locked": {
"lastModified": 1710146030,
"narHash": "sha256-SZ5L6eA7HJ/nmkzGG7/ISclqe6oZdOZTNoesiInkXPQ=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "b1d9ab70662946ef0850d488da1c9019f3a9752a",
"type": "github"
},
"original": {
"owner": "numtide",
"ref": "main",
"repo": "flake-utils",
"type": "github"
}
},
"flakey-profile": { "flakey-profile": {
"locked": { "locked": {
"lastModified": 1712898590, "lastModified": 1712898590,
@ -654,6 +673,22 @@
"type": "github" "type": "github"
} }
}, },
"nixpkgs_8": {
"locked": {
"lastModified": 1719826879,
"narHash": "sha256-xs7PlULe8O1SAcs/9e/HOjeUjBrU5FNtkAF/bSEcFto=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b9014df496d5b68bf7c0145d0e9b0f529ce4f2a8",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixpkgs-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"pre-commit-hooks-nix": { "pre-commit-hooks-nix": {
"inputs": { "inputs": {
"flake-compat": [ "flake-compat": [
@ -693,7 +728,8 @@
"neovim-nightly": "neovim-nightly", "neovim-nightly": "neovim-nightly",
"nixpkgs": "nixpkgs_5", "nixpkgs": "nixpkgs_5",
"sops-nix": "sops-nix", "sops-nix": "sops-nix",
"varnam-nix": "varnam-nix" "varnam-nix": "varnam-nix",
"wiki": "wiki"
} }
}, },
"rust-overlay": { "rust-overlay": {
@ -816,6 +852,21 @@
"type": "github" "type": "github"
} }
}, },
"systems_6": {
"locked": {
"lastModified": 1681028828,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
"owner": "nix-systems",
"repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"type": "github"
},
"original": {
"owner": "nix-systems",
"repo": "default",
"type": "github"
}
},
"utils": { "utils": {
"inputs": { "inputs": {
"systems": "systems_2" "systems": "systems_2"
@ -852,6 +903,26 @@
"repo": "varnam-nix", "repo": "varnam-nix",
"type": "github" "type": "github"
} }
},
"wiki": {
"inputs": {
"flake-utils": "flake-utils_5",
"nixpkgs": "nixpkgs_8"
},
"locked": {
"lastModified": 1719864041,
"narHash": "sha256-RXORLW2QlY9d7+hu9UuL3HJympNZto3fRMvGeS8X0EE=",
"owner": "adtya",
"repo": "wiki",
"rev": "c517187aa9940ca3584b0de2e4147e6d3ec185e6",
"type": "github"
},
"original": {
"owner": "adtya",
"ref": "main",
"repo": "wiki",
"type": "github"
}
} }
}, },
"root": "root", "root": "root",

View file

@ -30,6 +30,7 @@
neovim-nightly.url = "github:nix-community/neovim-nightly-overlay?ref=master"; neovim-nightly.url = "github:nix-community/neovim-nightly-overlay?ref=master";
varnam-nix.url = "github:adtya/varnam-nix?ref=main"; varnam-nix.url = "github:adtya/varnam-nix?ref=main";
adtyaxyz.url = "github:adtya/adtya.xyz?ref=main"; adtyaxyz.url = "github:adtya/adtya.xyz?ref=main";
wiki.url = "github:adtya/wiki?ref=main";
}; };
outputs = outputs =
@ -45,6 +46,7 @@
, neovim-nightly , neovim-nightly
, varnam-nix , varnam-nix
, adtyaxyz , adtyaxyz
, wiki
, ,
} @ inputs: } @ inputs:
let let

View file

@ -1,3 +1,3 @@
_: { _: {
imports = [ ./adtya.xyz.nix ./proofs.nix ]; imports = [ ./adtya.xyz.nix ./proofs.nix ./wiki.nix ];
} }

View file

@ -0,0 +1,30 @@
{ inputs, pkgs, ... }: {
services = {
caddy.virtualHosts."wiki.adtya.xyz" = {
extraConfig = ''
handle {
root * ${inputs.wiki.packages.${pkgs.system}.default}/share/web
encode gzip
try_files {path} /index.html
file_server
}
'';
};
frp.settings.proxies = [
{
name = "http.wiki.adtya.xyz";
type = "http";
customDomains = [ "wiki.adtya.xyz" ];
localPort = 80;
transport.useCompression = true;
}
{
name = "https.wiki.adtya.xyz";
type = "https";
customDomains = [ "wiki.adtya.xyz" ];
localPort = 443;
transport.useCompression = true;
}
];
};
}