chore: Rename module options
This commit is contained in:
parent
66c40b1026
commit
3f2e795b0e
6 changed files with 9 additions and 9 deletions
|
@ -13,11 +13,11 @@ in
|
||||||
httpAddress = "127.0.0.1";
|
httpAddress = "127.0.0.1";
|
||||||
httpPort = port;
|
httpPort = port;
|
||||||
database.type = "postgres";
|
database.type = "postgres";
|
||||||
disableRegistration = false;
|
|
||||||
log = {
|
|
||||||
level = "Warn";
|
|
||||||
};
|
|
||||||
settings = {
|
settings = {
|
||||||
|
service.DISABLE_REGISTRATION = false;
|
||||||
|
log = {
|
||||||
|
level = "Warn";
|
||||||
|
};
|
||||||
openid = {
|
openid = {
|
||||||
ENABLE_OPENID_SIGNUP = true;
|
ENABLE_OPENID_SIGNUP = true;
|
||||||
};
|
};
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
|
|
||||||
# Auto GC and store optimizations
|
# Auto GC and store optimizations
|
||||||
nix = {
|
nix = {
|
||||||
trustedUsers = [ "root" "gab" ];
|
settings.trusted-users = [ "root" "gab" ];
|
||||||
gc = {
|
gc = {
|
||||||
automatic = true;
|
automatic = true;
|
||||||
dates = "weekly";
|
dates = "weekly";
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{ ... }:
|
{ ... }:
|
||||||
{
|
{
|
||||||
security.acme.acceptTerms = true;
|
security.acme.acceptTerms = true;
|
||||||
security.acme.email = "club-reseau@lists.ens.psl.eu";
|
security.acme.defaults.email = "club-reseau@lists.ens.psl.eu";
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,7 +5,7 @@ in
|
||||||
{
|
{
|
||||||
services.hedgedoc = {
|
services.hedgedoc = {
|
||||||
enable = true;
|
enable = true;
|
||||||
configuration = {
|
settings = {
|
||||||
protocolUseSSL = true;
|
protocolUseSSL = true;
|
||||||
# scp =; # TODO
|
# scp =; # TODO
|
||||||
domain = "docs.beta.rz.ens.wtf";
|
domain = "docs.beta.rz.ens.wtf";
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
|
|
||||||
# Auto GC and store optimizations
|
# Auto GC and store optimizations
|
||||||
nix = {
|
nix = {
|
||||||
trustedUsers = [ "root" ];
|
settings.trusted-users = [ "root" ];
|
||||||
gc = {
|
gc = {
|
||||||
automatic = true;
|
automatic = true;
|
||||||
dates = "weekly";
|
dates = "weekly";
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{ pkgs, ... }: {
|
{ pkgs, ... }: {
|
||||||
# Auto GC and store optimizations
|
# Auto GC and store optimizations
|
||||||
nix = {
|
nix = {
|
||||||
trustedUsers = [ "root" ];
|
settings.trusted-users = [ "root" ];
|
||||||
gc = {
|
gc = {
|
||||||
automatic = true;
|
automatic = true;
|
||||||
dates = "weekly";
|
dates = "weekly";
|
||||||
|
|
Loading…
Reference in a new issue