From 45f836fe58c279260af17fa14a6e72cc947d5c35 Mon Sep 17 00:00:00 2001 From: Nick Date: Wed, 1 Oct 2025 20:23:04 -0500 Subject: [PATCH] feat: added opencloud to samba --- modules/nixos/services/samba/default.nix | 4 ++++ profiles/user0/default.nix | 1 + systems/mars/config/filesystem.nix | 9 +++++---- templates/website/frontend/static/styles.css | 0 4 files changed, 10 insertions(+), 4 deletions(-) mode change 100644 => 100755 templates/website/frontend/static/styles.css 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