13 lines
198 B
Nix
13 lines
198 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../home-default.nix
|
|
../../../modules/syncthing.nix
|
|
];
|
|
|
|
syncthing-custom = {
|
|
enabledFolders = [ "Credentials" ];
|
|
enableGui = false;
|
|
};
|
|
}
|