diff --git a/hosts/envy/hardware/default.nix b/hosts/envy/hardware/default.nix index 336ed03c..0e1bb4c5 100644 --- a/hosts/envy/hardware/default.nix +++ b/hosts/envy/hardware/default.nix @@ -1,4 +1,3 @@ -# nixos-generate-config --root ./ --no-filesystems { config, lib, modulesPath, ... }: { imports = [ (modulesPath + "/installer/scan/not-detected.nix") ]; diff --git a/hosts/prophet/filesystems/default.nix b/hosts/prophet/filesystems/default.nix index c7e595c6..b5f95fdb 100644 --- a/hosts/prophet/filesystems/default.nix +++ b/hosts/prophet/filesystems/default.nix @@ -3,6 +3,5 @@ fileSystems."/persist/storage" = { device = "/dev/disk/by-uuid/ef465845-cc56-4db5-9260-8ae515eb025e"; fsType = "btrfs"; - noCheck = true; }; } diff --git a/hosts/redmond/filesystems/default.nix b/hosts/redmond/filesystems/default.nix index 9b98001f..48b04a79 100644 --- a/hosts/redmond/filesystems/default.nix +++ b/hosts/redmond/filesystems/default.nix @@ -3,6 +3,7 @@ fileSystems = { "/mnt/Windrive" = { device = "/dev/disk/by-uuid/582C6B802C6B57D0"; + fsType = "ntfs"; options = [ "nosuid" "nodev" ]; }; "/home/${config.sysusers.main}/Midas" = { diff --git a/hosts/tower/hardware/default.nix b/hosts/tower/hardware/default.nix index 52647895..dd93fab8 100644 --- a/hosts/tower/hardware/default.nix +++ b/hosts/tower/hardware/default.nix @@ -1,4 +1,3 @@ -# nixos-generate-config --root ./ --no-filesystems { config, lib, modulesPath, ... }: { imports = [ (modulesPath + "/installer/scan/not-detected.nix") ]; diff --git a/modules/system/services/server/fileserver/nextcloud/default.nix b/modules/system/services/server/fileserver/nextcloud/default.nix index 0dbb2ef5..05306dd3 100644 --- a/modules/system/services/server/fileserver/nextcloud/default.nix +++ b/modules/system/services/server/fileserver/nextcloud/default.nix @@ -17,7 +17,7 @@ }; settings = { trusted_proxies = [ "127.0.0.1" ]; - trusted_domains = [ "files.nixfox.ca" ]; + trusted_domains = [ config.services.nextcloud.hostName ]; overwriteprotocol = "https"; mail_smtphost = "mx.nixfox.ca"; mail_domain = "nixfox.ca";