mirror of
https://github.com/olexsmir/dotfiles.git
synced 2026-01-15 00:40:44 +02:00
20 lines
405 B
Nix
20 lines
405 B
Nix
{ pkgs, ... }:
|
|
{
|
|
services.caddy.virtualHosts."knot.olexsmir.xyz".extraConfig = ''
|
|
reverse_proxy http://localhost:5555
|
|
'';
|
|
|
|
services.tangled.knot = {
|
|
enable = true;
|
|
openFirewall = false;
|
|
motd = ''
|
|
i use arch btw
|
|
i use nvim btw
|
|
i use nix btw
|
|
'';
|
|
server = {
|
|
owner = "did:plc:oifo2b6pso4z6es65c7hrrey";
|
|
hostname = "knot.olexsmir.xyz";
|
|
};
|
|
};
|
|
}
|