From 3c95d27f22d390812cc825b1f233bbb986dd5748 Mon Sep 17 00:00:00 2001 From: Daniel Langbein Date: Mon, 11 Sep 2023 17:20:17 +0200 Subject: [PATCH] autostart --- modules/autostart.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/modules/autostart.nix b/modules/autostart.nix index 27f188f..98e34d9 100644 --- a/modules/autostart.nix +++ b/modules/autostart.nix @@ -10,10 +10,9 @@ source = (pkgs.signal-desktop + "/share/applications/" + "signal-desktop" + ".desktop"); }; - # TODO: This is very strange. But with KeePassXC autostart enabled, `gpg --card-status` does not detect my Nitrokey USB smartcard! - #home.file.keepassxc = { - # target = ".config/autostart/" + "org.keepassxc.KeePassXC" + ".desktop"; - # source = (pkgs.keepassxc + "/share/applications/" + "org.keepassxc.KeePassXC" + ".desktop"); - #}; + home.file.keepassxc = { + target = ".config/autostart/" + "org.keepassxc.KeePassXC" + ".desktop"; + source = (pkgs.keepassxc + "/share/applications/" + "org.keepassxc.KeePassXC" + ".desktop"); + }; }; }