mirror of
https://github.com/RGBCube/ncc
synced 2025-07-31 03:57:44 +00:00
Specify url explicitly
This commit is contained in:
parent
86dce4d657
commit
f70c3bffcb
3 changed files with 8 additions and 6 deletions
6
flake.lock
generated
6
flake.lock
generated
|
@ -791,11 +791,11 @@
|
||||||
"tools": "tools"
|
"tools": "tools"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1704893737,
|
"lastModified": 1704898273,
|
||||||
"narHash": "sha256-BHX26WXbp8DCUJJsTJF4fGJl7qDDTfSR+HtyogRR1oM=",
|
"narHash": "sha256-H+2hv/HTY1NyWxMFM7YX7Ny69iNKs3PMC712s3qIR1w=",
|
||||||
"owner": "RGBCube",
|
"owner": "RGBCube",
|
||||||
"repo": "Site",
|
"repo": "Site",
|
||||||
"rev": "90d744ac15bb99dc9e33b364178f0a25a7d0e425",
|
"rev": "81f236e18dc61632ed2fea160d21404878c54d36",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
@ -1,10 +1,11 @@
|
||||||
{ config, ulib, keys, ... }: with ulib; merge
|
{ config, ulib, keys, ... }: with ulib; merge
|
||||||
|
|
||||||
(systemConfiguration {
|
(systemConfiguration {
|
||||||
system.stateVersion = "23.05";
|
system.stateVersion = "23.05";
|
||||||
|
|
||||||
nixpkgs.hostPlatform = "x86_64-linux";
|
nixpkgs.hostPlatform = "x86_64-linux";
|
||||||
|
|
||||||
|
networking.domain = "rgbcu.be";
|
||||||
|
|
||||||
time.timeZone = "Europe/Amsterdam";
|
time.timeZone = "Europe/Amsterdam";
|
||||||
|
|
||||||
users.users.root.passwordFile = config.age.secrets."cube.password".path;
|
users.users.root.passwordFile = config.age.secrets."cube.password".path;
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
{ ulib, ... }: with ulib;
|
{ config, ulib, ... }: with ulib;
|
||||||
|
|
||||||
serverSystemConfiguration {
|
serverSystemConfiguration {
|
||||||
services.site = enabled {
|
services.site = enabled {
|
||||||
|
url = config.networking.domain;
|
||||||
configureNginx = true;
|
configureNginx = true;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue