diff options
Diffstat (limited to 'lass/2configs/sync')
-rw-r--r-- | lass/2configs/sync/decsync.nix | 11 | ||||
-rw-r--r-- | lass/2configs/sync/weechat.nix | 8 |
2 files changed, 19 insertions, 0 deletions
diff --git a/lass/2configs/sync/decsync.nix b/lass/2configs/sync/decsync.nix new file mode 100644 index 000000000..c3f6511c2 --- /dev/null +++ b/lass/2configs/sync/decsync.nix @@ -0,0 +1,11 @@ +{ + krebs.syncthing.folders.decsync = { + path = "/home/lass/decsync"; + peers = [ "mors" "blue" "green" "phone" ]; + }; + krebs.permown."/home/lass/decsync" = { + owner = "lass"; + group = "syncthing"; + umask = "0007"; + }; +} diff --git a/lass/2configs/sync/weechat.nix b/lass/2configs/sync/weechat.nix new file mode 100644 index 000000000..30c7b262b --- /dev/null +++ b/lass/2configs/sync/weechat.nix @@ -0,0 +1,8 @@ +{ + krebs.syncthing.folders."/home/lass/.weechat".peers = [ "blue" "green" "mors" ]; + krebs.permown."/home/lass/.weechat" = { + owner = "lass"; + group = "syncthing"; + umask = "0007"; + }; +} |