Add synthing service
This commit is contained in:
parent
571096e94c
commit
4dc2898e32
1
home.nix
1
home.nix
|
@ -13,6 +13,7 @@ in
|
|||
./jq.nix
|
||||
./tmux.nix
|
||||
./direnv.nix
|
||||
./syncthing.nix
|
||||
./packages.nix
|
||||
];
|
||||
|
||||
|
|
|
@ -0,0 +1,11 @@
|
|||
{ config, pkgs, ...}:
|
||||
{
|
||||
services.syncthing = {
|
||||
enable = true;
|
||||
tray = {
|
||||
enable = true;
|
||||
package = pkgs.qsyncthingtray;
|
||||
command = "qsyncthingtray";
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue