From a1dbc17babebb2402337f69519b25a29b647ec3a Mon Sep 17 00:00:00 2001 From: albert <albert@sysctl.io> Date: Sun, 23 Feb 2025 13:26:03 -0800 Subject: [PATCH] Various updates --- nixos/base.nix | 2 +- nixos/common/services/syncthing.nix | 2 +- nixos/containers/rdesktop/mounts.nix | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/nixos/base.nix b/nixos/base.nix index dbf5d96e..875ca956 100644 --- a/nixos/base.nix +++ b/nixos/base.nix @@ -1,4 +1,4 @@ -{ inputs, lib,hostname, username, desktop, ... }: { +{ hostname, username, ... }: { imports = [ # NixOS Modules ./common/modules/networking.nix # Initial Networking configs diff --git a/nixos/common/services/syncthing.nix b/nixos/common/services/syncthing.nix index 31b30701..6133c746 100644 --- a/nixos/common/services/syncthing.nix +++ b/nixos/common/services/syncthing.nix @@ -114,6 +114,6 @@ in { # Create the folder if it doens't exist systemd.tmpfiles.rules = [ - "d ${config.services.syncthing.folders.logseq.path} - albert albert" + "d ${config.services.syncthing.settings.folders.logseq.path} - albert albert" ]; } diff --git a/nixos/containers/rdesktop/mounts.nix b/nixos/containers/rdesktop/mounts.nix index c78567d8..bdfdc8d4 100644 --- a/nixos/containers/rdesktop/mounts.nix +++ b/nixos/containers/rdesktop/mounts.nix @@ -5,7 +5,7 @@ isReadOnly = false; }; "/shared" = { - hostPath = "/Storage/Data/Docker/sysctl.io/guacamole/guacd/shared"; + hostPath = "/tmp/guacamole"; mountPoint = "/shared"; isReadOnly = false; };