From 8c7a7815a77e4378ba85973bd0b404471abf4e10 Mon Sep 17 00:00:00 2001 From: beatzaplenty Date: Tue, 22 Jul 2025 15:18:27 +1000 Subject: [PATCH] modified: hosts/nixos/home.nix --- hosts/nixos/home.nix | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/hosts/nixos/home.nix b/hosts/nixos/home.nix index 351bedd..735ec16 100644 --- a/hosts/nixos/home.nix +++ b/hosts/nixos/home.nix @@ -33,5 +33,24 @@ # Optionally start in background directly startInBackground = true; }; - + home.file = { + ".local/share/applications/discord-web.desktop".text = '' + [Desktop Entry] + Type=Application + Name=Discord Web + Exec=firefox --new-window https://discord.com/app + Icon=firefox + Terminal=false + Categories=Network;Chat; + ''; + ".local/share/applications/telegram-web.desktop".text = '' + [Desktop Entry] + Type=Application + Name=Telegram Web + Exec=firefox --new-window https://web.telegram.org + Icon=firefox + Terminal=false + Categories=Network;Chat; + ''; + }; } \ No newline at end of file