{"id":21092341,"url":"https://github.com/passivelemon/lemonake","last_synced_at":"2026-03-27T04:56:58.900Z","repository":{"id":220016369,"uuid":"750536958","full_name":"PassiveLemon/lemonake","owner":"PassiveLemon","description":"Personal flake repository","archived":false,"fork":false,"pushed_at":"2025-05-12T19:26:07.000Z","size":1049,"stargazers_count":10,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-12T20:39:29.223Z","etag":null,"topics":["cachix","flake","nix","nix-flake","nixos"],"latest_commit_sha":null,"homepage":"","language":"Nix","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/PassiveLemon.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-01-30T20:32:48.000Z","updated_at":"2025-05-12T19:26:11.000Z","dependencies_parsed_at":"2024-03-15T20:24:04.511Z","dependency_job_id":"d8c75f8f-9c8d-4c2c-a913-a86734298c9c","html_url":"https://github.com/PassiveLemon/lemonake","commit_stats":null,"previous_names":["passivelemon/lemonake"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PassiveLemon%2Flemonake","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PassiveLemon%2Flemonake/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PassiveLemon%2Flemonake/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PassiveLemon%2Flemonake/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/PassiveLemon","download_url":"https://codeload.github.com/PassiveLemon/lemonake/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254538532,"owners_count":22087883,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cachix","flake","nix","nix-flake","nixos"],"created_at":"2024-11-19T21:53:31.979Z","updated_at":"2026-03-27T04:56:58.861Z","avatar_url":"https://github.com/PassiveLemon.png","language":"Nix","funding_links":[],"categories":[],"sub_categories":[],"readme":"# lemonake\nThis is my collection of packages and modules in a flake.\n\nSome of these are already in Nixpkgs or in the process of getting merged but I provide faster updates here.\n\nPackages and the flake are automatically updated every day and pushed to Cachix.\n\n## Usage\nAdd the flake to your inputs:\n```nix\n# flake.nix\n{\n  inputs = {\n    nixpkgs.url = \"github:nixos/nixpkgs/nixpkgs-unstable\";\n\n    lemonake.url = \"github:passivelemon/lemonake\";\n  };\n\n  outputs = { ... } @ inputs: {\n    # ...\n  };\n}\n```\n\n## Features\nRun `nix flake show github:passivelemon/lemonake` to see all outputs. Home Manager modules will show as unknown.\n\nModules:\n- Home Manager (Do not use in NixOS configuration)\n  - Can be imported with `inputs.lemonake.homeManagerModules.\u003cmodule\u003e`\n  - [`programs.steamvr`](./modules/home-manager/steamvr/README.md)\n- NixOS (Do not use in home-manager configuration)\n  - Can be imported with `inputs.lemonake.nixosModules.\u003cmodule\u003e`\n  - [`services.autoadb`](./modules/nixos/autoadb/README.md)\n  - [`services.wivrn`](./modules/nixos/wivrn/README.md)\n\nPackages:\n- Can be added with `inputs.lemonake.packages.${pkgs.system}.\u003cpackage\u003e`\n- `adgobye`\n- `adgobye-git`\n- `alcom`\n- `animdl-git`\n- `gdlauncher` (Alias to `gdlauncher-carbon`)\n- `gdlauncher-carbon`\n- `gdlauncher-legacy`\n- `gfm`\n- `gfm-git`\n- `hd2pystratmacro`\n- `hd2pystratmacro-git`\n- `lua-pam-git`\n- `monado-vulkan-layers-git`\n- `opencomposite-git`\n- `picom`\n- `picom-tag`\n- `picom-git`\n- `poepyautopot`\n- `poepyautopot-git`\n- `proton-ge-rtsp` (Please only use with `programs.steam.extraCompatPackages`)\n- `tilp2`\n- `tilp2-git`\n- `vapor-git`\n- `wayvr-dashboard`\n- `wayvr-dashboard-git`\n- `webfisher`\n- `webfisher-git`\n- [`wivrn`](./pkgs/wivrn/README.md)\n- [`wivrn-git`](./pkgs/wivrn/README.md)\n- `wlx-overlay-s`\n- `wlx-overlay-s-git`\n- `xrizer`\n- `xrizer-git`\n\nNaming scheme:\n- Latest release: `\u003cpackage\u003e`\n- Latest tag: `\u003cpackage\u003e-tag`\n- Latest commit: `\u003cpackage\u003e-git`\n\nThe only architecture currently supported is `x86_64-linux`. Others may be supported in the future.\n\n## Binary cache\n```nix\n# configuration.nix\n{\n  nix.settings = {\n    extra-substituters = [ \"https://passivelemon.cachix.org\" ];\n    extra-trusted-public-keys = [ \"passivelemon.cachix.org-1:ScYjLCvvLi70S95SMMr8lMilpZHuafLP3CK/nZ9AaXM=\" ];\n  };\n}\n```\n\n## Other\nAny sort of warning or assertion will be removed about 3 months after it was introduced to keep the code clean.\n\n## Credits\n- [moni-dz/nixpkgs-f2k](https://github.com/moni-dz/nixpkgs-f2k/) for inspiration\n- [nix-community/nixpkgs-xr](https://github.com/nix-community/nixpkgs-xr/) for inspiration\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpassivelemon%2Flemonake","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpassivelemon%2Flemonake","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpassivelemon%2Flemonake/lists"}