feat(services): add synology drive module

This commit is contained in:
Moritz Böhme 2023-05-01 14:11:51 +02:00
parent 6fad257d5b
commit f58c8dc6f8
No known key found for this signature in database
GPG key ID: 970C6E89EB0547A9
6 changed files with 39 additions and 11 deletions

View file

@ -1,9 +1,12 @@
{ lib, pkgs, ... }:
{ lib, ... }:
with lib;
{
my = {
services.openconnect.enable = true;
services = {
openconnect.enable = true;
synology-drive.enable = true;
};
programs = {
ssh.includeSecrets = mkDefault [ ../../secrets/ssh-home.age ];
git.signing = mkDefault true;
@ -57,8 +60,4 @@ with lib;
};
};
};
environment.systemPackages = with pkgs; [
synology-drive-client
];
}