mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2025-10-04 15:45:39 +00:00
- Removed keepassxc package and its configuration. - Replaced the KeePassXC Firefox extension with the Bitwarden extension. - Removed KeepassXC from Hyprland exec-once - Removed keepass folder from Syncthing configuration
23 lines
631 B
Nix
23 lines
631 B
Nix
{
|
|
services.syncthing = {
|
|
enable = true;
|
|
user = "toast";
|
|
group = "users";
|
|
configDir = "/home/toast/.config/syncthing";
|
|
extraFlags = [ "--no-default-folder" ];
|
|
overrideDevices = true;
|
|
overrideFolders = true;
|
|
settings = {
|
|
devices = {
|
|
"phone" = { id = "XIRT2YS-3PZY7PF-PL4QTYK-LCYCSKW-GARN5N6-KBWGSP6-YZDQGED-N7R6YQF"; };
|
|
"tablet" = { id = "BCSESXD-F5NOKTH-QPTHZEY-XITQPKC-BVWMA36-YM72QIS-JOUPIGN-2S7LRAU"; };
|
|
};
|
|
folders = {
|
|
"obsidian" = {
|
|
path = "/data/Backup/Obsidian/";
|
|
devices = [ "phone" "tablet" ];
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|