diff --git a/home/modules/graphical/hyprland.nix b/home/modules/graphical/hyprland.nix index 580a345..35cab29 100644 --- a/home/modules/graphical/hyprland.nix +++ b/home/modules/graphical/hyprland.nix @@ -126,6 +126,7 @@ animations = { enabled = true; + first_launch_animation = false; bezier = [ "easeOutQuint,0.23,1,0.32,1" "easeInOutCubic,0.65,0.05,0.36,1" diff --git a/hosts/nixos/modules/services/default.nix b/hosts/nixos/modules/services/default.nix index e09ee8a..59639ea 100644 --- a/hosts/nixos/modules/services/default.nix +++ b/hosts/nixos/modules/services/default.nix @@ -7,6 +7,6 @@ ./tailscale.nix ./flatpak.nix ./restic.nix - ./zerotierone.nix + ./syncthing.nix ]; } diff --git a/hosts/nixos/modules/services/syncthing.nix b/hosts/nixos/modules/services/syncthing.nix new file mode 100644 index 0000000..cae28c5 --- /dev/null +++ b/hosts/nixos/modules/services/syncthing.nix @@ -0,0 +1,23 @@ +{ + 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" ]; + }; + }; + }; + }; +} diff --git a/hosts/nixos/modules/services/zerotierone.nix b/hosts/nixos/modules/services/zerotierone.nix deleted file mode 100644 index 838288e..0000000 --- a/hosts/nixos/modules/services/zerotierone.nix +++ /dev/null @@ -1,3 +0,0 @@ -{ - services.zerotierone.enable = true; -}