1773268022

This commit is contained in:
2026-03-11 16:27:02 -06:00
parent 1c409b43d6
commit f277f955b4
2 changed files with 12 additions and 0 deletions
+1
View File
@@ -12,6 +12,7 @@ let
./home/zed.nix
./home/ghostty.nix
./home/ssh.nix
./home/desktop-apps.nix
];
in
{
+11
View File
@@ -0,0 +1,11 @@
{ pkgs, ... }:
{
xdg.desktopEntries.audiobookshelf = {
name = "Audiobookshelf";
exec = "${pkgs.xdg-utils}/bin/xdg-open https://abs.atri.dad";
terminal = false;
type = "Application";
categories = [ "AudioVideo" "Audio" ];
};
}