diff options
author | lassulus <lassulus@lassul.us> | 2019-04-18 10:16:02 +0200 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2019-04-18 10:16:02 +0200 |
commit | 2a89d6587d5ee5d3151b5e5be05e152a539e78d0 (patch) | |
tree | b62c261b932b1dae51728933235613b8d0a726ec /lass/2configs/sync/weechat.nix | |
parent | 3adcf3a74c00b5e88b8c8c15d6aeb9ab3f9304db (diff) |
l syncs: use permown, use attrs
Diffstat (limited to 'lass/2configs/sync/weechat.nix')
-rw-r--r-- | lass/2configs/sync/weechat.nix | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lass/2configs/sync/weechat.nix b/lass/2configs/sync/weechat.nix index d10177b1d..30c7b262b 100644 --- a/lass/2configs/sync/weechat.nix +++ b/lass/2configs/sync/weechat.nix @@ -1,8 +1,8 @@ { - krebs.syncthing.folders = [ - { path = "/home/lass/.weechat"; peers = [ "blue" "green" "mors" ]; } - ]; - lass.ensure-permissions = [ - { folder = "/home/lass/.weechat"; owner = "lass"; group = "syncthing"; } - ]; + krebs.syncthing.folders."/home/lass/.weechat".peers = [ "blue" "green" "mors" ]; + krebs.permown."/home/lass/.weechat" = { + owner = "lass"; + group = "syncthing"; + umask = "0007"; + }; } |