[home] split desktop.nix out of home.nix

This commit is contained in:
2024-06-23 14:16:15 +08:00
parent d3386006c1
commit eec62add8b
4 changed files with 22 additions and 24 deletions
+17
View File
@@ -0,0 +1,17 @@
{ pkgs, lib, config, ... }:
{
home.packages = with pkgs; [
telegram-desktop
qq
];
# An Apple Music client, only can be downloaded after purchasing
xdg.desktopEntries = {
Cider = {
name = "Cider";
exec = "appimage-run ${config.home.homeDirectory}/app/Cider-2.4.1.AppImage";
terminal = false;
categories = [ "Application" ];
};
};
}