mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-05 16:41:04 +01:00
treewide: flatten single file modules
Some files don't need nesting and can be root level again to reduce conflicts with other PRs. Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
This commit is contained in:
parent
bda9deb791
commit
86402a17b6
424 changed files with 15 additions and 15 deletions
92
modules/services/dropbox.nix
Normal file
92
modules/services/dropbox.nix
Normal file
|
|
@ -0,0 +1,92 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
let
|
||||
|
||||
cfg = config.services.dropbox;
|
||||
baseDir = ".dropbox-hm";
|
||||
dropboxCmd = "${pkgs.dropbox-cli}/bin/dropbox";
|
||||
homeBaseDir = "${config.home.homeDirectory}/${baseDir}";
|
||||
|
||||
in
|
||||
{
|
||||
meta.maintainers = [ lib.maintainers.eyjhb ];
|
||||
|
||||
options = {
|
||||
services.dropbox = {
|
||||
enable = lib.mkEnableOption "Dropbox daemon";
|
||||
|
||||
path = lib.mkOption {
|
||||
type = lib.types.path;
|
||||
default = "${config.home.homeDirectory}/Dropbox";
|
||||
defaultText = lib.literalExpression ''"''${config.home.homeDirectory}/Dropbox"'';
|
||||
apply = toString; # Prevent copies to Nix store.
|
||||
description = "Where to put the Dropbox directory.";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
assertions = [
|
||||
(lib.hm.assertions.assertPlatform "services.dropbox" pkgs lib.platforms.linux)
|
||||
];
|
||||
|
||||
home.packages = [ pkgs.dropbox-cli ];
|
||||
|
||||
systemd.user.services.dropbox = {
|
||||
Unit = {
|
||||
Description = "dropbox";
|
||||
};
|
||||
|
||||
Install = {
|
||||
WantedBy = [ "default.target" ];
|
||||
};
|
||||
|
||||
Service = {
|
||||
Environment = [
|
||||
"HOME=${homeBaseDir}"
|
||||
"DISPLAY="
|
||||
];
|
||||
|
||||
Type = "forking";
|
||||
PIDFile = "${homeBaseDir}/.dropbox/dropbox.pid";
|
||||
|
||||
Restart = "on-failure";
|
||||
PrivateTmp = true;
|
||||
ProtectSystem = "full";
|
||||
Nice = 10;
|
||||
|
||||
ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
|
||||
ExecStop = "${dropboxCmd} stop";
|
||||
ExecStart = toString (
|
||||
pkgs.writeShellScript "dropbox-start" ''
|
||||
# ensure we have the dirs we need
|
||||
run ${pkgs.coreutils}/bin/mkdir $VERBOSE_ARG -p \
|
||||
${homeBaseDir}/{.dropbox,.dropbox-dist,Dropbox}
|
||||
|
||||
# symlink them as needed
|
||||
if [[ ! -d ${config.home.homeDirectory}/.dropbox ]]; then
|
||||
run ${pkgs.coreutils}/bin/ln $VERBOSE_ARG -s \
|
||||
${homeBaseDir}/.dropbox ${config.home.homeDirectory}/.dropbox
|
||||
fi
|
||||
|
||||
if [[ ! -d ${lib.escapeShellArg cfg.path} ]]; then
|
||||
run ${pkgs.coreutils}/bin/ln $VERBOSE_ARG -s \
|
||||
${homeBaseDir}/Dropbox ${lib.escapeShellArg cfg.path}
|
||||
fi
|
||||
|
||||
# get the dropbox bins if needed
|
||||
if [[ ! -f $HOME/.dropbox-dist/VERSION ]]; then
|
||||
${pkgs.coreutils}/bin/yes | ${dropboxCmd} update
|
||||
fi
|
||||
|
||||
${dropboxCmd} start
|
||||
''
|
||||
);
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue