/ applications / aseprite.nix
aseprite.nix
 1  { config, lib, pkgs, ... }: {
 2    home.packages = [ pkgs.aseprite ];
 3    xdg.desktopEntries."aseprite" = {
 4      name = "Aseprite";
 5      comment = "Create animated sprites and pixel art";
 6      exec = "cage -- aseprite";
 7      icon = "aseprite";
 8      terminal = false;
 9      type = "Application";
10    };
11  }
12