mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 19:55:41 +03:00

After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
118 lines
2.5 KiB
Nix
118 lines
2.5 KiB
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
let
|
|
|
|
cfg = config.services.yandex-disk;
|
|
|
|
dir = "/var/lib/yandex-disk";
|
|
|
|
u = if cfg.user != null then cfg.user else "yandexdisk";
|
|
|
|
in
|
|
|
|
{
|
|
|
|
###### interface
|
|
|
|
options = {
|
|
|
|
services.yandex-disk = {
|
|
|
|
enable = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = false;
|
|
description = ''
|
|
Whether to enable Yandex-disk client. See https://disk.yandex.ru/
|
|
'';
|
|
};
|
|
|
|
username = lib.mkOption {
|
|
default = "";
|
|
type = lib.types.str;
|
|
description = ''
|
|
Your yandex.com login name.
|
|
'';
|
|
};
|
|
|
|
password = lib.mkOption {
|
|
default = "";
|
|
type = lib.types.str;
|
|
description = ''
|
|
Your yandex.com password. Warning: it will be world-readable in /nix/store.
|
|
'';
|
|
};
|
|
|
|
user = lib.mkOption {
|
|
default = null;
|
|
type = lib.types.nullOr lib.types.str;
|
|
description = ''
|
|
The user the yandex-disk daemon should run as.
|
|
'';
|
|
};
|
|
|
|
directory = lib.mkOption {
|
|
type = lib.types.path;
|
|
default = "/home/Yandex.Disk";
|
|
description = "The directory to use for Yandex.Disk storage";
|
|
};
|
|
|
|
excludes = lib.mkOption {
|
|
default = "";
|
|
type = lib.types.commas;
|
|
example = "data,backup";
|
|
description = ''
|
|
Comma-separated list of directories which are excluded from synchronization.
|
|
'';
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
###### implementation
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
|
|
users.users = lib.mkIf (cfg.user == null) [
|
|
{
|
|
name = u;
|
|
uid = config.ids.uids.yandexdisk;
|
|
group = "nogroup";
|
|
home = dir;
|
|
}
|
|
];
|
|
|
|
systemd.services.yandex-disk = {
|
|
description = "Yandex-disk server";
|
|
|
|
after = [ "network.target" ];
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
# FIXME: have to specify ${directory} here as well
|
|
unitConfig.RequiresMountsFor = dir;
|
|
|
|
script = ''
|
|
mkdir -p -m 700 ${dir}
|
|
chown ${u} ${dir}
|
|
|
|
if ! test -d "${cfg.directory}" ; then
|
|
(mkdir -p -m 755 ${cfg.directory} && chown ${u} ${cfg.directory}) ||
|
|
exit 1
|
|
fi
|
|
|
|
${pkgs.su}/bin/su -s ${pkgs.runtimeShell} ${u} \
|
|
-c '${pkgs.yandex-disk}/bin/yandex-disk token -p ${cfg.password} ${cfg.username} ${dir}/token'
|
|
|
|
${pkgs.su}/bin/su -s ${pkgs.runtimeShell} ${u} \
|
|
-c '${pkgs.yandex-disk}/bin/yandex-disk start --no-daemon -a ${dir}/token -d ${cfg.directory} --exclude-dirs=${cfg.excludes}'
|
|
'';
|
|
|
|
};
|
|
};
|
|
|
|
}
|