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";
|
||||
httpPort = port;
|
||||
database.type = "postgres";
|
||||
disableRegistration = false;
|
||||
settings = {
|
||||
service.DISABLE_REGISTRATION = false;
|
||||
log = {
|
||||
level = "Warn";
|
||||
};
|
||||
settings = {
|
||||
openid = {
|
||||
ENABLE_OPENID_SIGNUP = true;
|
||||
};
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
# Auto GC and store optimizations
|
||||
nix = {
|
||||
trustedUsers = [ "root" "gab" ];
|
||||
settings.trusted-users = [ "root" "gab" ];
|
||||
gc = {
|
||||
automatic = true;
|
||||
dates = "weekly";
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{ ... }:
|
||||
{
|
||||
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 = {
|
||||
enable = true;
|
||||
configuration = {
|
||||
settings = {
|
||||
protocolUseSSL = true;
|
||||
# scp =; # TODO
|
||||
domain = "docs.beta.rz.ens.wtf";
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
# Auto GC and store optimizations
|
||||
nix = {
|
||||
trustedUsers = [ "root" ];
|
||||
settings.trusted-users = [ "root" ];
|
||||
gc = {
|
||||
automatic = true;
|
||||
dates = "weekly";
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{ pkgs, ... }: {
|
||||
# Auto GC and store optimizations
|
||||
nix = {
|
||||
trustedUsers = [ "root" ];
|
||||
settings.trusted-users = [ "root" ];
|
||||
gc = {
|
||||
automatic = true;
|
||||
dates = "weekly";
|
||||
|
|
Loading…
Reference in a new issue