diff options
author | lassulus <lassulus@lassul.us> | 2022-01-28 23:12:22 +0100 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2022-01-28 23:12:27 +0100 |
commit | 63bccf2200fc9bf04cbfbfbfb44dbd754224d35b (patch) | |
tree | 712e1a005ac597e364270b2189da4c1f114316f5 /lass | |
parent | 2f9a8b3331ffa05a1f9de45b925315b9a9e0a3d8 (diff) |
l sync: add the_playlist
sadly a duplicate definition of l/2/radio
Diffstat (limited to 'lass')
-rw-r--r-- | lass/1systems/mors/config.nix | 1 | ||||
-rw-r--r-- | lass/2configs/sync/the_playlist.nix | 9 |
2 files changed, 10 insertions, 0 deletions
diff --git a/lass/1systems/mors/config.nix b/lass/1systems/mors/config.nix index 4d042de22..dd479f267 100644 --- a/lass/1systems/mors/config.nix +++ b/lass/1systems/mors/config.nix @@ -26,6 +26,7 @@ with import <stockholm/lib>; <stockholm/lass/2configs/sync/sync.nix> <stockholm/lass/2configs/sync/decsync.nix> <stockholm/lass/2configs/sync/weechat.nix> + <stockholm/lass/2configs/sync/the_playlist.nix> #<stockholm/lass/2configs/c-base.nix> <stockholm/lass/2configs/br.nix> <stockholm/lass/2configs/ableton.nix> diff --git a/lass/2configs/sync/the_playlist.nix b/lass/2configs/sync/the_playlist.nix new file mode 100644 index 000000000..5bbf790a7 --- /dev/null +++ b/lass/2configs/sync/the_playlist.nix @@ -0,0 +1,9 @@ +{ + services.syncthing.folders.the_playlist = { + path = "/home/lass/tmp/the_playlist"; + devices = [ "mors" "phone" "prism" ]; + }; + lass.acl."/home/lass/tmp/the_playlist"."u:syncthing:X".parents = true; + lass.acl."/home/lass/tmp/the_playlist"."u:syncthing:rwX" = {}; + lass.acl."/home/lass/tmp/the_playlist"."u:lass:rwX" = {}; +} |