Desktop/keepassxc: replace manual autostart config with home-manager module

This commit is contained in:
Toast 2025-01-31 11:11:43 +01:00
parent bdff3d97e9
commit 3dd73e0b24

View file

@ -34,30 +34,11 @@ in {
# No module for KeePassXC config :(
home = {
packages = [pkgs.keepassxc];
file = {
".config/keepassxc/keepassxc.ini".text = kpxcSettings;
# For some reason the autostart .desktop is not the same as the regular one
".config/autostart/org.keepassxc.KeePassXC.desktop".text = ''
[Desktop Entry]
Name=KeePassXC
GenericName=Password Manager
Exec=keepassxc
TryExec=keepassxc
Icon=keepassxc
StartupWMClass=keepassxc
StartupNotify=true
Terminal=false
Type=Application
Version=1.0
Categories=Utility;Security;Qt;
MimeType=application/x-keepass2;
X-GNOME-Autostart-enabled=true
X-GNOME-Autostart-Delay=2
X-KDE-autostart-after=panel
X-LXQt-Need-Tray=true
'';
};
file.".config/keepassxc/keepassxc.ini".text = kpxcSettings;
};
xdg.autostart.entries = [
"${pkgs.keepassxc}/share/applications/org.keepassxc.KeePassXC.desktop"
];
};
};
}