Fix some minor annoyances

This commit is contained in:
Nathan McCarty 2022-10-02 21:37:05 -04:00
parent 3c8b365a07
commit 175be8db19
Signed by: thatonelutenist
GPG Key ID: D70DA3DD4D1E9F96
2 changed files with 7 additions and 0 deletions

View File

@ -22,6 +22,7 @@ with lib; {
${pkgs.protonmail-bridge}/bin/protonmail-bridge --noninteractive
'';
};
Install = { WantedBy = [ "graphical-session.target" ]; };
};
# Setup accounts
accounts.email = {

View File

@ -11,5 +11,11 @@ in
package = stray;
};
};
# Add a delay to the service so it will start up after the bar
systemd.user.services.syncthingtray = {
Service = {
ExecStartPre = "/run/current-system/sw/bin/sleep 5";
};
};
};
}