nixos/extra/sync.nix
2021-02-28 22:16:36 +01:00

12 lines
237 B
Nix

{ config, pkgs, ... }:
let
unstable = import <nixos-unstable> { config = { allowUnfree = true; }; };
in
{
environment.systemPackages = with pkgs; [
nextcloud-client
unstable.syncthing
magic-wormhole
vdirsyncer
];
}