19 lines
400 B
Nix
19 lines
400 B
Nix
{ pkgs, lib, config, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
telegram-desktop
|
|
qq
|
|
mpv
|
|
feishu
|
|
];
|
|
|
|
# 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" ];
|
|
};
|
|
};
|
|
} |