diff options
Diffstat (limited to 'systems')
-rw-r--r-- | systems/system1/configuration.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/systems/system1/configuration.nix b/systems/system1/configuration.nix index d39af2e..9910511 100644 --- a/systems/system1/configuration.nix +++ b/systems/system1/configuration.nix @@ -1,3 +1,4 @@ +{ pkgs, ... }: { imports = [ <fysiweb/configs> @@ -6,4 +7,14 @@ ]; networking.hostName = "system1"; + + fysiweb-apps.public.static-website."nomath-org".domain = "nomath.org"; + fysiweb-apps.public.static-website."nomath-org".root = "${pkgs.nomath-website}"; + + fysiweb-apps.public.cgit."code-nomath-org".domain = "code.nomath.org"; + fysiweb-apps.public.cgit."code-nomath-org".settings.max-stats = "year"; + fysiweb-apps.public.cgit."code-nomath-org".settings.root-desc = ""; + fysiweb-apps.public.cgit."code-nomath-org".settings.root-title = "code.nomath.org"; + + fysiweb-apps.public.cgit."code-nomath-org".repositories."website".description = "nomath.org website"; } |