From cfd2abe482881e60ed6b9a4bf51788cf83dac28a Mon Sep 17 00:00:00 2001 From: Daniel Langbein Date: Wed, 22 Nov 2023 15:29:36 +0100 Subject: [PATCH] autostart solanum --- modules/autostart.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/modules/autostart.nix b/modules/autostart.nix index 29529c5..457d707 100644 --- a/modules/autostart.nix +++ b/modules/autostart.nix @@ -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"); + }; }; }