mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-15 05:21:06 +01:00
19 lines
369 B
Nix
19 lines
369 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.rclone.remotes = {
|
|
alices-cool-remote-v2 = {
|
|
config = {
|
|
type = "b2";
|
|
hard_delete = true;
|
|
};
|
|
secrets = {
|
|
account = "${pkgs.writeText "acc" ''
|
|
super-secret-account-id
|
|
''}";
|
|
key = "${pkgs.writeText "key" ''
|
|
api-key-from-file
|
|
''}";
|
|
};
|
|
};
|
|
};
|
|
}
|