mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 12:51:34 +01:00
hosts/srv-public: Enable personal-blog
This commit is contained in:
parent
75c3e62cfb
commit
9ec0c676be
1 changed files with 10 additions and 1 deletions
|
|
@ -25,6 +25,7 @@
|
|||
|
||||
services =
|
||||
let
|
||||
sstorkDomain = "sstork.dev";
|
||||
sproutedDomain = "sprouted.cloud";
|
||||
in
|
||||
{
|
||||
|
|
@ -43,9 +44,14 @@
|
|||
bouncers.firewall = true;
|
||||
};
|
||||
|
||||
personal-blog = {
|
||||
enable = true;
|
||||
domain = sstorkDomain;
|
||||
};
|
||||
|
||||
forgejo = {
|
||||
enable = true;
|
||||
domain = "git.sstork.dev";
|
||||
domain = "git.${sstorkDomain}";
|
||||
doBackups = true;
|
||||
ssh.enable = true;
|
||||
};
|
||||
|
|
@ -86,6 +92,9 @@
|
|||
inherit (config.custom) services;
|
||||
in
|
||||
{
|
||||
personal-blog = {
|
||||
inherit (services.personal-blog) domain port;
|
||||
};
|
||||
forgejo = {
|
||||
inherit (services.forgejo) domain port;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue