Fix typo and enable btrfs scrubbing
This commit is contained in:
parent
54855a0d33
commit
6f09998656
20 changed files with 65 additions and 60 deletions
|
@ -1,7 +1,7 @@
|
|||
{ ... }:
|
||||
{
|
||||
services.nfs.server = {
|
||||
enable = true;
|
||||
enable = config.system.server.enable;
|
||||
exports = ''
|
||||
/export/JimboNFS/Files *(rw,sync,no_subtree_check)
|
||||
/export/JimboNFS/Media *(rw,sync,no_subtree_check)
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
{
|
||||
services = {
|
||||
samba = {
|
||||
enable = true;
|
||||
enable = config.system.server.enable;
|
||||
securityType = "user";
|
||||
openFirewall = true;
|
||||
settings = {
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
imports = [ ./nginx ];
|
||||
|
||||
services.nextcloud = {
|
||||
enable = true;
|
||||
enable = config.system.server.enable;
|
||||
package = pkgs.nextcloud30;
|
||||
hostName = "cloud.${config.domains.jim1}";
|
||||
datadir = "/mnt/nextcloud";
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
services.nginx.virtualHosts."cloud.${config.domains.jim1}" = {
|
||||
enableACME = true;
|
||||
addSSL = true;
|
||||
onlySSL = true;
|
||||
locations."/" = {
|
||||
proxyWebsockets = true;
|
||||
extraConfig = ''
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
imports = [ ./nginx ];
|
||||
|
||||
services.photoprism = {
|
||||
enable = true;
|
||||
enable = config.system.server.enable;
|
||||
port = 2342;
|
||||
originalsPath = "/var/lib/private/photoprism/originals";
|
||||
address = "0.0.0.0";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue