1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-30 11:37:44 +00:00

Specify url explicitly

This commit is contained in:
RGBCube 2024-01-10 17:51:43 +03:00
parent 86dce4d657
commit f70c3bffcb
No known key found for this signature in database
3 changed files with 8 additions and 6 deletions

View file

@ -1,10 +1,11 @@
{ config, ulib, keys, ... }: with ulib; merge
(systemConfiguration {
system.stateVersion = "23.05";
system.stateVersion = "23.05";
nixpkgs.hostPlatform = "x86_64-linux";
networking.domain = "rgbcu.be";
time.timeZone = "Europe/Amsterdam";
users.users.root.passwordFile = config.age.secrets."cube.password".path;

View file

@ -1,7 +1,8 @@
{ ulib, ... }: with ulib;
{ config, ulib, ... }: with ulib;
serverSystemConfiguration {
services.site = enabled {
url = config.networking.domain;
configureNginx = true;
};
}