diff --git a/modules/nixos/services/samba/default.nix b/modules/nixos/services/samba/default.nix index 057578d..a98f3d9 100755 --- a/modules/nixos/services/samba/default.nix +++ b/modules/nixos/services/samba/default.nix @@ -30,6 +30,10 @@ in path = instances.comfyui.paths.path0; writable = "true"; }; + ${instances.opencloud.name} = { + path = instances.opencloud.paths.path0; + writable = "true"; + }; }; }; }; diff --git a/profiles/user0/default.nix b/profiles/user0/default.nix index 2243604..47f87ae 100755 --- a/profiles/user0/default.nix +++ b/profiles/user0/default.nix @@ -31,6 +31,7 @@ in "networkmanager" "nextcloud" "ollama" + "opencloud" "plugdev" "docker" "postgres" diff --git a/systems/mars/config/filesystem.nix b/systems/mars/config/filesystem.nix index 59aabe4..4a1e4fd 100755 --- a/systems/mars/config/filesystem.nix +++ b/systems/mars/config/filesystem.nix @@ -6,7 +6,7 @@ let inherit (flake.config.people) user0 user1; inherit (flake.config.machines.devices) mars ceres synology; - inherit (flake.config.services.instances) jellyfin audiobookshelf comfyui; + inherit (flake.config.services) instances; synologySecrets = config.sops.secrets."network/synology".path; ceresSecrets = config.sops.secrets."network/server".path; in @@ -28,9 +28,10 @@ in ]; sambaFolders = [ - audiobookshelf.name - jellyfin.name - comfyui.name + instances.audiobookshelf.name + instances.jellyfin.name + instances.comfyui.name + instances.opencloud.name ]; synologyMounts = synologyDrive: { diff --git a/templates/website/frontend/static/styles.css b/templates/website/frontend/static/styles.css old mode 100644 new mode 100755