2
0
Fork 0

WiP! rsync test

This commit is contained in:
Ehmry - 2020-11-05 21:39:05 +01:00
parent 2c659c35f5
commit e3e1e0f285
2 changed files with 12 additions and 0 deletions

View File

@ -11,6 +11,7 @@ let
./execve.nix
./hello.nix
./log.nix
./rsync.nix
./solo5/multi.nix
./vmm_x86.nix
./x86.nix

11
tests/rsync.nix Normal file
View File

@ -0,0 +1,11 @@
{
name = "rsync";
machine = { pkgs, ... }: {
imports = [ ../nixos-modules/systemd.nix ];
services.rsyncd = {
enable = true;
modules.root.path = "/";
};
systemd.services.rsyncd.genode.enable = true;
};
}