autostart solanum

This commit is contained in:
Daniel Langbein 2023-11-22 15:29:36 +01:00
parent f9c17ee0ce
commit cfd2abe482
Signed by: langfingaz
GPG Key ID: 6C47C753F0823002

View File

@ -3,6 +3,10 @@
# See also:
# Temporary workaround until https://github.com/nix-community/home-manager/issues/3447 is merged.
# Desktop files:
# /run/current-system/sw/share/applications
# /etc/profiles/per-user/yoda/share/applications/
home-manager.users.yoda = { osConfig, config, pkgs, ... }: {
home.file."keepassxc" = {
target = ".config/autostart/org.keepassxc.KeePassXC.desktop";
@ -26,5 +30,10 @@
target = ".config/autostart/" + pkgs.thunderbird.pname + ".desktop";
source = (pkgs.thunderbird + "/share/applications/" + pkgs.thunderbird.pname + ".desktop");
};
home.file."gnome-solanum" = {
target = ".config/autostart/org.gnome.Solanum.desktop";
source = (pkgs.gnome-solanum + "/share/applications/org.gnome.Solanum.desktop");
};
};
}