mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 11:36:05 +01:00
16 lines
278 B
Nix
16 lines
278 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
config = {
|
|
services.dropbox = {
|
|
enable = true;
|
|
path = "${config.home.homeDirectory}/dropbox";
|
|
};
|
|
|
|
nmt.script = ''
|
|
serviceFile=home-files/.config/systemd/user/dropbox.service
|
|
|
|
assertFileExists $serviceFile
|
|
'';
|
|
};
|
|
}
|