{"id":32390731,"url":"https://github.com/jtmoulia/dotfiles","last_synced_at":"2026-04-29T16:09:21.175Z","repository":{"id":5009628,"uuid":"6168017","full_name":"jtmoulia/dotfiles","owner":"jtmoulia","description":"jtmoulia's layered dotfiles","archived":false,"fork":false,"pushed_at":"2026-02-02T20:51:22.000Z","size":1481,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-02-03T10:45:37.252Z","etag":null,"topics":["ansible-roles","arch-linux-configuration","dotfiles","playbook","shell"],"latest_commit_sha":null,"homepage":"","language":"Emacs Lisp","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jtmoulia.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":"2012-10-11T03:15:19.000Z","updated_at":"2026-02-02T20:51:26.000Z","dependencies_parsed_at":"2024-05-07T00:26:09.251Z","dependency_job_id":"6b668b8b-4c31-453b-9e86-2fca9ea74e6a","html_url":"https://github.com/jtmoulia/dotfiles","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jtmoulia/dotfiles","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jtmoulia%2Fdotfiles","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jtmoulia%2Fdotfiles/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jtmoulia%2Fdotfiles/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jtmoulia%2Fdotfiles/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jtmoulia","download_url":"https://codeload.github.com/jtmoulia/dotfiles/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jtmoulia%2Fdotfiles/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32433076,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T13:34:34.882Z","status":"ssl_error","status_checked_at":"2026-04-29T13:34:29.830Z","response_time":110,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["ansible-roles","arch-linux-configuration","dotfiles","playbook","shell"],"created_at":"2025-10-25T04:51:11.387Z","updated_at":"2026-04-29T16:09:21.141Z","avatar_url":"https://github.com/jtmoulia.png","language":"Emacs Lisp","funding_links":[],"categories":[],"sub_categories":[],"readme":"# dotfiles\n\nMy dotfiles. They're organized as ansible roles.\n\n## Prelude\n\nSet your root password to something secure:\n\n```shell\n# passwd\n```\n\nIf you want to create a user account (`jtmoulia` for the sake of history):\n\n```shell\n# useradd --create-home -G wheel jtmoulia\n# passwd jtmoulia\n```\n\nNote: the ansible deploy scripts will ensure that the user is properly configured.\n\nMake sure that you've installed the necessary deps for running `wifi-menu`,\notherwise you won't be able to connect to the network:\n\n```shell\n# pacman -S dialog wpa_supplicant\n```\n\nInstall the Python dependencies via uv:\n\n```shell\n# pacman -S python-uv\n$ uv sync\n```\n\n## Basic Usage\n\nTo install everything run:\n\n```shell\nuv run bin/dotsible.sh\n```\n\nYou can use alternate configurations; here it's run with configuration specific to my\nLenovo Flex 4:\n\n```shell\ndotsible -p lenovo-flex-4\n```\n\n### The `dotsible` executable\n\nThe first run will create an executable in your path named `dotsible`, which can\nbe called instead of `uv run bin/dotsible.sh -p $DOTSIBLE_PLAYBOOK`. The\nfollowing examples use this shortcut.\n\nSometimes you'll want to install only a few roles, say `ssh` and `net-utils`:\n\n```shell\ndotsible -t ssh -t net-utils\n```\n\n## Roles\n\nRelated configurations are organized into [Ansible\nroles](https://docs.ansible.com/ansible/latest/user_guide/playbooks_reuse_roles.html).\n\nAll of the available roles are located under `playbooks/roles/` -- you can list\nthem by simply running:\n\n```shell\nls playbooks/roles\n```\n\nSome roles have documentation under `$ROLE/README.md`.\n\n## Playbooks\n\nA set of roles and variables are organized into [Ansible\nplaybooks](https://docs.ansible.com/ansible/latest/user_guide/playbooks.html).\nTypically a playbook is used to define the overall configuration for a target\nenvironment.\n\nThe currently available playbooks are:\n\n  - `base`: basic roles such as `git`, `bash`, and `tmux`\n  - `cli`: portable CLI specific configuration\n  - `lenovo-flex-4`: Arch Linux configuration for a Lenovo Flex 4\n  - `lenovo-yoga`: Arch Linux configuration for a Lenovo Yoga\n  - `osx`: OS X on a 2022 MacBook Pro M1 (Monterey)\n\n## Portability\n\nRoles and playbooks were typically designed against Arch Linux. Roles listed in\nthe `base` or `osx` playbooks will work under OS X.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjtmoulia%2Fdotfiles","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjtmoulia%2Fdotfiles","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjtmoulia%2Fdotfiles/lists"}