autostart signal-desktop

This commit is contained in:
Daniel Langbein 2023-09-07 21:24:13 +02:00
parent 485e4b2937
commit 0634dbc37c

View File

@ -3,12 +3,11 @@
{
# See also:
# Temporary workaround until https://github.com/nix-community/home-manager/issues/3447 is merged.
# The keepassxc desktop file is named differently than pkg.name. Thus we add it manually.
home-manager.users.yoda = { osConfig, config, pkgs, ... }: {
home.file.keepassxc = {
target = ".config/autostart/" + "org.keepassxc.KeePassXC" + ".desktop";
source = (pkgs.keepassxc + "/share/applications/" + "org.keepassxc.KeePassXC" + ".desktop");
home.file.signal-desktop = {
target = ".config/autostart/" + "signal-desktop" + ".desktop";
source = (pkgs.signal-desktop + "/share/applications/" + "signal-desktop" + ".desktop");
};
};
}