This repository has been archived on 2026-04-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
AsaJS/packages/default.nix
2026-04-15 10:44:52 +07:00

13 lines
327 B
Nix

{...}: {
bun = import ./bun.nix;
cage-xtmapper = {version ? "0.2.0"}: import ./cage-xtmapper-${version}.nix;
catppuccin-obs = import ./catppuccin-obs.nix;
cursors = {
name ? "aemeath",
size ? 48,
}: (import ./custom-cursors.nix {
cursors = name;
size = size;
});
winegdk = import ./winegdk.nix;
}