{"id":50588385,"url":"https://github.com/sand4rt/glove80-nix","last_synced_at":"2026-06-05T08:30:22.294Z","repository":{"id":362583529,"uuid":"1259832831","full_name":"sand4rt/glove80-nix","owner":"sand4rt","description":null,"archived":false,"fork":false,"pushed_at":"2026-06-04T23:07:54.000Z","size":8,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-05T00:15:04.526Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/sand4rt.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-06-04T22:53:12.000Z","updated_at":"2026-06-04T23:07:58.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/sand4rt/glove80-nix","commit_stats":null,"previous_names":["sand4rt/glove80-nix"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/sand4rt/glove80-nix","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sand4rt%2Fglove80-nix","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sand4rt%2Fglove80-nix/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sand4rt%2Fglove80-nix/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sand4rt%2Fglove80-nix/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sand4rt","download_url":"https://codeload.github.com/sand4rt/glove80-nix/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sand4rt%2Fglove80-nix/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33937661,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-05T02:00:06.157Z","response_time":120,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":[],"created_at":"2026-06-05T08:30:21.533Z","updated_at":"2026-06-05T08:30:22.289Z","avatar_url":"https://github.com/sand4rt.png","language":"Nix","funding_links":[],"categories":[],"sub_categories":[],"readme":"# glove80-nix\n\nNix flake for the [MoErgo Glove80](https://www.moergo.com/) split keyboard:\n\n- a **package** — `glove80`, a friendly USB flashing CLI (firmware-agnostic);\n- a **Home Manager module** — `programs.glove80`, which builds ZMK firmware from\n  your keymap and installs the flasher pointed at it.\n\n## Home Manager — build firmware from your keymap\n\nA minimal configuration only needs `enable` and a `keymap`; everything else has\nsensible defaults. The full set of options (shown with their defaults) is:\n\n```nix\n{\n  inputs.glove80.url = \"github:sand4rt/glove80-nix\";\n  # inputs.glove80.inputs.nixpkgs.follows = \"nixpkgs\"; # optional\n\n  # In your Home Manager configuration:\n  imports = [ inputs.glove80.homeManagerModules.default ];\n\n  programs.glove80 = {\n    enable = true;\n\n    # Design at https://my.glove80.com, export, and paste here (or use a path).\n    keymap = # devicetree\n    ''\n      // ... your ZMK devicetree keymap ...\n    '';\n\n    # MoErgo ZMK fork the firmware is built from. Override to pin a different\n    # revision; must contain the `nix/` build infrastructure.\n    # source = pkgs.fetchFromGitHub {\n    #   owner = \"moergo-sc\";\n    #   repo = \"zmk\";\n    #   rev = \"2f73a230e2fc7b2bd64a9736181e87bf54338131\";\n    #   hash = \"sha256-WsQaX+g8XAmhTD9DjODzzw37Br1Wpd7wz34Rd9BvIvM=\";\n    # };\n\n    idleTimeout = 2700; # seconds idle before RGB + BLE go idle\n\n    underglow = {\n      enable = true;       # compile RGB underglow support\n      onStart = true;      # turn underglow on at boot\n      hue = 0;             # 0–359 degrees\n      saturation = 100;    # 0–100 percent\n      brightness = 20;     # 0–100 percent (must be \u003c= brightnessMax)\n      brightnessMax = 20;  # 0–100 percent, safety cap\n      speed = 3;           # 1–5 animation speed\n      effect = \"solid\";    # solid | breathe | spectrum | swirl | test\n      autoOffIdle = true;  # underglow off when keyboard goes idle\n      autoOffUsb = false;  # underglow off when USB is disconnected\n    };\n\n    sleep = {\n      enable = true;    # allow deep-sleep when idle\n      timeout = 1800;   # seconds idle before deep sleep\n    };\n\n    bluetooth.enable = true; # compile BLE support\n    usb.enable = true;       # compile wired USB HID support\n\n    debounce = {\n      pressMs = 5;    # key-press debounce (ms)\n      releaseMs = 5;  # key-release debounce (ms)\n    };\n\n    usbLogging = false; # USB serial logging (debug; central half only)\n\n    extraConfig = \"\"; # extra raw lines appended to the generated kconfig\n  };\n}\n```\n\nThis installs a `glove80` command whose default firmware is your build, so\n`glove80 flash` just works. The built UF2 is also exposed read-only at\n`config.programs.glove80.firmware`.\n\n## Flashing\n\nWith the Home Manager module the `glove80` command is already on your `PATH` and\ndefaults to your built firmware, so:\n\n```sh\nglove80 flash\n```\n\nWithout installing anything, run it straight from the flake and point it at a\nUF2:\n\n```sh\nnix run github:sand4rt/glove80-nix -- flash ./glove80.uf2\n```\n\nThe CLI walks you through entering the bootloader on each half, then detects,\nmounts, writes, and reboots them.\n\n```\nglove80 flash [FIRMWARE]   Flash firmware onto both halves over USB.\nglove80 path  [FIRMWARE]   Print the resolved firmware (.uf2) path.\nglove80 version            Print the version.\nglove80 help               Show this help (default).\n```\n\nFirmware is resolved as: `FIRMWARE` argument → `$GLOVE80_FIRMWARE` → built-in\ndefault (if the package was built with one).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsand4rt%2Fglove80-nix","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsand4rt%2Fglove80-nix","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsand4rt%2Fglove80-nix/lists"}