mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-25 02:10:57 +01:00
rclone: add module
Rclone is a command-line program to manage files on cloud storage, it also featrues support for FUSE mounts. "Users call rclone *"The Swiss army knife of cloud storage"* and *"Technology indistinguishable from magic"*" - https://rclone.org/ This module manages the configuration of rclone remotes.
This commit is contained in:
parent
66f565db48
commit
eb5d59dac9
9 changed files with 287 additions and 0 deletions
13
tests/integration/standalone/rclone/home.nix
Normal file
13
tests/integration/standalone/rclone/home.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
imports = [ ./test-remote.nix ];
|
||||
|
||||
home.username = "alice";
|
||||
home.homeDirectory = "/home/alice";
|
||||
|
||||
home.stateVersion = "24.05"; # Please read the comment before changing.
|
||||
|
||||
# Let Home Manager install and manage itself.
|
||||
programs.home-manager.enable = true;
|
||||
|
||||
programs.rclone.enable = true;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue