feat: Added services to home

This commit is contained in:
uttarayan21
2025-02-07 22:43:18 +05:30
parent f355fa88c4
commit 66e2019d7e
7 changed files with 39 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
{...}: {
imports = [
./syncthing.nix
];
}

View File

@@ -0,0 +1,15 @@
{
pkgs,
device,
config,
...
}: {
services.syncthing = {
enable = true;
openDefaultPorts = true;
# user = "${device.user}";
# group = "${device.user}";
# dataDir = "${config.home.homeDirectory}/Sync";
# configDir = "${config.xdg.configHome}/syncthing";
};
}