{"id":17786679,"url":"https://github.com/gelleson/laptop-config-remote","last_synced_at":"2026-05-13T12:39:27.856Z","repository":{"id":258826125,"uuid":"871582095","full_name":"gelleson/laptop-config-remote","owner":"gelleson","description":"Streamlined macOS configuration using Nix and Nix Darwin. Automates setup, manages system configs, and includes pre-configured dev tools and utilities.","archived":false,"fork":false,"pushed_at":"2024-12-13T12:02:43.000Z","size":55,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-12-13T13:19:17.010Z","etag":null,"topics":["home-manager","macos","nix","nix-darwin","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/gelleson.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}},"created_at":"2024-10-12T11:13:18.000Z","updated_at":"2024-12-13T12:02:46.000Z","dependencies_parsed_at":"2024-11-04T10:24:55.173Z","dependency_job_id":"13a0301b-961f-45af-9d1c-00dbdb20b85a","html_url":"https://github.com/gelleson/laptop-config-remote","commit_stats":{"total_commits":54,"total_committers":2,"mean_commits":27.0,"dds":"0.11111111111111116","last_synced_commit":"f803c3be57610241b68b383dbad34ce8548561c2"},"previous_names":["gelleson/laptop-config-remote"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gelleson%2Flaptop-config-remote","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gelleson%2Flaptop-config-remote/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gelleson%2Flaptop-config-remote/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gelleson%2Flaptop-config-remote/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gelleson","download_url":"https://codeload.github.com/gelleson/laptop-config-remote/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":229724349,"owners_count":18114429,"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":["home-manager","macos","nix","nix-darwin","nixos"],"created_at":"2024-10-27T10:04:22.359Z","updated_at":"2026-05-13T12:39:27.827Z","avatar_url":"https://github.com/gelleson.png","language":"Nix","funding_links":[],"categories":[],"sub_categories":[],"readme":"# macOS Configuration with Nix and Nix Darwin\n\nThis repository provides a comprehensive setup for configuring macOS using Nix and Nix Darwin. It streamlines the installation process and helps manage system configurations efficiently.\n\n## Table of Contents\n\n- [Quick Start](#quick-start)\n- [Features](#features)\n- [Prerequisites](#prerequisites)\n- [Manual Installation](#manual-installation)\n  - [1. Installing Nix](#1-installing-nix)\n  - [2. Configuring Nix](#2-configuring-nix)\n  - [3. Installing Nix Darwin](#3-installing-nix-darwin)\n  - [4. Cloning the Configuration](#4-cloning-the-configuration)\n  - [5. Activating the Configuration](#5-activating-the-configuration)\n- [Usage](#usage)\n- [Customization](#customization)\n- [Troubleshooting](#troubleshooting)\n- [Contributing](#contributing)\n- [License](#license)\n\n## Quick Start\n\nFor a quick setup, run these commands in sequence:\n\n1. Install Homebrew and Nix:\n\n   ```bash\n   curl -L https://raw.githubusercontent.com/gelleson/laptop-config-remote/refs/heads/master/install.sh | bash -s install\n   ```\n\n2. Fetch the configuration and ensure nix.conf:\n\n   ```bash\n   curl -L https://raw.githubusercontent.com/gelleson/laptop-config-remote/refs/heads/master/install.sh | bash -s config\n   ```\n\n3. Install Nix Darwin and activate the configuration:\n   ```bash\n   curl -L https://raw.githubusercontent.com/gelleson/laptop-config-remote/refs/heads/master/install.sh | bash -s activate\n   ```\n\n## Features\n\n- Easy installation of Nix package manager\n- Configuration management using Nix Darwin\n- Homebrew integration for additional package management\n- Customizable system settings and user environment\n- Pre-configured development tools and utilities\n- Shell enhancements with Zsh and useful aliases\n\n## Prerequisites\n\n- macOS (tested on macOS Monterey and later)\n- Administrative access to your machine\n- Internet connection for downloading packages\n\n## Manual Installation\n\nIf you prefer to install manually or want more control over the process, follow these steps:\n\n### 1. Installing Nix\n\nInstall the Nix package manager:\n\n```bash\nsh \u003c(curl -L https://nixos.org/nix/install)\n```\n\n### 2. Configuring Nix\n\nCreate or edit `/etc/nix/nix.conf`:\n\n```bash\nsudo mkdir -p /etc/nix\necho \"experimental-features = nix-command flakes\" | sudo tee -a /etc/nix/nix.conf\n```\n\n### 3. Installing Nix Darwin\n\nBuild and install Nix Darwin:\n\n```bash\nnix-build https://github.com/LnL7/nix-darwin/archive/master.tar.gz -A installer\n./result/bin/darwin-installer\n```\n\n### 4. Cloning the Configuration\n\nClone this repository:\n\n```bash\ngit clone https://github.com/gelleson/laptop-config-remote.git ~/.config/nix-darwin\n```\n\n### 5. Activating the Configuration\n\nApply the configuration:\n\n```bash\ndarwin-rebuild switch --flake ~/.config/nix-darwin#my-mac\n```\n\n## Usage\n\nAfter installation, you can use the following commands:\n\n- Update and rebuild the system: `updos`\n- Edit configuration: `updos-edit`\n- List files: `ls` (uses `eza`)\n- Detailed file listing: `ll`\n- View file contents: `cat` (uses `bat`)\n- Update LLM plugins: `llm-update-plugins`\n\n## Customization\n\nTo customize your setup:\n\n1. Edit files in `~/.config/nix-darwin/modules/`\n2. Modify `flake.nix` to add or remove modules\n3. Run `updos` to apply changes\n\n## Troubleshooting\n\nIf you encounter issues:\n\n1. Ensure Nix and Homebrew are in your PATH\n2. Check for error messages in the terminal output\n3. Verify that all prerequisites are met\n4. Try running `nix flake update` in the `~/.config/nix-darwin/` directory\n\n## Contributing\n\nContributions are welcome! Please follow these steps:\n\n1. Fork the repository\n2. Create a new branch (`git checkout -b feature/YourFeature`)\n3. Make your changes\n4. Commit your changes (`git commit -am 'Add some feature'`)\n5. Push to the branch (`git push origin feature/YourFeature`)\n6. Create a new Pull Request\n\n## License\n\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.\n\n---\n\nFor more information or support, please open an issue on the GitHub repository.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgelleson%2Flaptop-config-remote","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgelleson%2Flaptop-config-remote","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgelleson%2Flaptop-config-remote/lists"}