From 49f3d9bdf113470d5f6c76896e48cd344edd6498 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Sun, 2 Jan 2022 12:16:45 +0100 Subject: [PATCH] feat(watson): symlink directory from cloud --- configs/watson.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configs/watson.nix b/configs/watson.nix index 4070b80..bbbe5d8 100644 --- a/configs/watson.nix +++ b/configs/watson.nix @@ -1,4 +1,8 @@ { config, pkgs, ... }: { environment.systemPackages = [ pkgs.watson ]; + + system.activationScripts.watson-home = '' + ln -sfn ${config.users.users.me.home}/cloud/Seafile/Documents/watson ${config.users.users.me.home}/.config/watson + ''; }