mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
7b73f84071
Ability to control Dropbox daemon, if it should start and where to place the files. PR #1391
25 lines
467 B
Nix
25 lines
467 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
config = {
|
|
services.dropbox = {
|
|
enable = true;
|
|
path = "${config.home.homeDirectory}/dropbox";
|
|
};
|
|
|
|
nixpkgs.overlays = [
|
|
(self: super: {
|
|
dropbox-cli = pkgs.writeScriptBin "dummy-dropbox-cli" "" // {
|
|
outPath = "@dropbox-cli@";
|
|
};
|
|
})
|
|
];
|
|
|
|
nmt.script = ''
|
|
serviceFile=home-files/.config/systemd/user/dropbox.service
|
|
|
|
assertFileExists $serviceFile
|
|
'';
|
|
|
|
};
|
|
}
|