chore: move some packages out of main home.nix

This commit is contained in:
Zhongheng Liu 2024-09-26 16:50:23 +03:00
commit a479e4633c
No known key found for this signature in database
7 changed files with 63 additions and 10 deletions

View file

@ -0,0 +1,16 @@
{
pkgs,
config,
lib,
...
}: {
home.packages = with pkgs; [vesktop];
xdg.desktopEntries.discord = {
exec = "${pkgs.vesktop}/bin/vesktop";
terminal = false;
mimeType = ["x-scheme-handler/discord"];
name = "Discord - Vesktop";
genericName = "Discord but substituted with Vesktop";
type = "Application";
};
}