fmt: reformatted using nixpkgs-fmt prettifier mpd: created configuration hypr: add window rules commons: add usingMusicPlayerDaemon variable
15 lines
342 B
Nix
15 lines
342 B
Nix
{ 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";
|
|
};
|
|
}
|