mirror of
https://github.com/nix-community/home-manager.git
synced 2025-04-15 00:36:34 +00:00
11 lines
187 B
Nix
11 lines
187 B
Nix
|
{
|
||
|
programs.rclone.remotes = {
|
||
|
alices-cool-remote.config = {
|
||
|
type = "sftp";
|
||
|
host = "backup-server";
|
||
|
user = "alice";
|
||
|
key_file = "/key/path/foo";
|
||
|
};
|
||
|
};
|
||
|
}
|