my nixos dotfiles :3 (git.koi.rip mirror) git.koi.rip/koi/dotfiles
linux dotfiles neovim nixos catppuccin
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

seber: init junesite

june 3eb5e574 9cf5ce68

+24
+1
systems/seber/services/default.nix
··· 3 3 ./tailscale.nix 4 4 ./nginx.nix 5 5 ./website.nix 6 + ./junesite.nix 6 7 ./lebel.nix 7 8 ./mimi.nix 8 9 ./robin.nix
+23
systems/seber/services/junesite.nix
··· 1 + { 2 + systemd.services.junesite = { 3 + description = "meow"; 4 + after = [ "network.target" ]; 5 + wantedBy = [ "multi-user.target" ]; 6 + 7 + serviceConfig = { 8 + ExecStart = "/var/junesite/junesite/bin/junesite"; 9 + WorkingDirectory = "/var/junesite"; 10 + Restart = "on-failure"; 11 + RestartSec = 10; 12 + }; 13 + }; 14 + 15 + services.nginx.virtualHosts."june.xn--q9jyb4c" = { 16 + locations."/".proxyPass = "http://127.0.0.1:8282"; 17 + forceSSL = true; 18 + sslCertificate = "/run/agenix/ssl-koi-cert"; 19 + sslCertificateKey = "/run/agenix/ssl-koi-key"; 20 + }; 21 + 22 + systemd.tmpfiles.rules = [ "d /var/junesite 2750 koi users -" ]; 23 + }