chore: Rename module options

This commit is contained in:
gabriel-doriath-dohler 2023-02-23 23:59:59 +00:00
parent 66c40b1026
commit 3f2e795b0e
6 changed files with 9 additions and 9 deletions

View file

@ -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;
}; };

View file

@ -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";

View file

@ -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";
} }

View file

@ -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";

View file

@ -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";

View file

@ -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";