feat(desktop): add lnxlink module.

This commit is contained in:
CronyAkatsuki 2025-11-01 18:35:48 +01:00
parent ca8570f469
commit f2922095ec
4 changed files with 66 additions and 22 deletions

View file

@ -1,6 +1,7 @@
{
inputs,
config,
home,
pkgs,
lib,
...
@ -24,5 +25,32 @@
beets
croc
];
programs.rclone = {
enable = true;
remotes = {
homeassistant = {
config = {
type = "sftp";
host = "assistant.home.cronyakatsuki.xyz";
user = "root";
key_file = "${home.homeDirectory} ~/.ssh/main";
};
mounts = {
"/var/lib/homeassistant" = {
enable = true;
mountPoint = "/home/crony/docs/assistant";
options = {
default-premissions = true;
vfs-cache-mode = "writes";
buffer-size = "64M";
multi-thread-streams = 4;
multi-thread-cutoff = "250M";
};
};
};
};
};
};
};
}