Compare commits

...

2 commits

Author SHA1 Message Date
c619ba5767 fix(home): Start syncthing tray and wait
The tray might not yet be available, by specifying `--wait`, we can tell
syncthing-tray to wait for the tray to be available.
2024-03-17 23:35:10 +01:00
d6306cced7 feat(home): Add simplex-chat desktop app 2024-03-17 21:23:57 +01:00
3 changed files with 11 additions and 1 deletions

View file

@ -6,6 +6,7 @@
./programs/rofi
./programs/xmonad
./programs/jitsi-meet
./programs/simplex-chat
./services/polybar
./services/dunst
./services/udiskie

View file

@ -0,0 +1,5 @@
{ config, lib, pkgs, ... }:
{
config.home.packages = [ pkgs.simplex-chat-desktop ];
}

View file

@ -3,6 +3,10 @@
{
config.services.syncthing = {
enable = true;
tray.enable = true;
tray = {
enable = true;
command = "syncthingtray --wait";
};
extraOptions = [ "--wait" ];
};
}