mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-24 05:35:29 -08:00
Compare commits
No commits in common. "6c37553143eaf2833c52e261bd21429dc1c72c2f" and "9d756a2046e3d789acba3e783964759c7f4bad53" have entirely different histories.
6c37553143
...
9d756a2046
4 changed files with 2 additions and 10 deletions
|
@ -33,7 +33,7 @@
|
|||
};
|
||||
firewall = {
|
||||
enable = true;
|
||||
allowedTCPPorts = [80 443 3001 5432]; # port 3001 opened to allow git traffic on the local netword
|
||||
allowedTCPPorts = [80 443 3001]; # port 3001 opened to allow git traffic on the local netword
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
@ -12,11 +12,6 @@
|
|||
|
||||
settings = {
|
||||
|
||||
"ui" = {
|
||||
DEFAULT_THEME = "palenight";
|
||||
THEMES = "auto,palenight,gitea,arc-green";
|
||||
};
|
||||
|
||||
#ui.DEFAULT_THEME = "arc-green";
|
||||
# Enable this after the first user has been created
|
||||
service.DISABLE_REGISTRATION = true;
|
||||
|
|
|
@ -40,7 +40,6 @@
|
|||
|
||||
services.postgresql = {
|
||||
enable = true;
|
||||
enableTCPIP = true;
|
||||
ensureDatabases = [ "nextcloud" ];
|
||||
ensureUsers = [
|
||||
{
|
||||
|
@ -53,8 +52,7 @@
|
|||
local all all trust
|
||||
host all all 127.0.0.1/32 trust
|
||||
host all all ::1/128 trust
|
||||
host all all 0.0.0.0/0 md5
|
||||
''; # address is the computer you are connecting from
|
||||
'';
|
||||
};
|
||||
|
||||
# Make sure PostSQL is running before nextcloud
|
||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue