{"id":25994878,"url":"https://github.com/dcsunset/emacs-config","last_synced_at":"2026-02-14T11:02:53.656Z","repository":{"id":274741911,"uuid":"923622377","full_name":"DCsunset/emacs-config","owner":"DCsunset","description":null,"archived":false,"fork":false,"pushed_at":"2025-11-17T21:31:22.000Z","size":78,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-17T23:24:44.616Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Emacs Lisp","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/DCsunset.png","metadata":{"files":{"readme":"README.org","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":"2025-01-28T15:23:55.000Z","updated_at":"2025-11-17T21:31:25.000Z","dependencies_parsed_at":"2025-03-17T23:22:00.858Z","dependency_job_id":"7d5c0668-3476-4bc9-9f5c-dbcb37a45b73","html_url":"https://github.com/DCsunset/emacs-config","commit_stats":null,"previous_names":["dcsunset/emacs-config"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/DCsunset/emacs-config","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DCsunset%2Femacs-config","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DCsunset%2Femacs-config/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DCsunset%2Femacs-config/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DCsunset%2Femacs-config/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DCsunset","download_url":"https://codeload.github.com/DCsunset/emacs-config/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DCsunset%2Femacs-config/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29443447,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-14T10:51:12.367Z","status":"ssl_error","status_checked_at":"2026-02-14T10:50:52.088Z","response_time":53,"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":[],"created_at":"2025-03-05T15:17:18.643Z","updated_at":"2026-02-14T11:02:53.641Z","avatar_url":"https://github.com/DCsunset.png","language":"Emacs Lisp","funding_links":[],"categories":[],"sub_categories":[],"readme":"* emacs-config\n\nMy personal Emacs configuration in Nix.\n\n** Usage\n\nRun it without installing:\n#+begin_src shell\n  nix run github:DCsunset/emacs-config\n  # or using emacs-nox\n  nix run github:DCsunset/emacs-config#nox\n\n  # or clone the repo locally first\n  git clone https://github.com/DCsunset/emacs-config.git\n  cd emacs-config\n  nix run .\n#+end_src\n\nUsing with Nix Flakes:\n#+begin_src nix\n  {\n    inputs = {\n      nixpkgs.url = \"github:NixOS/nixpkgs?ref=nixos-unstable\";\n      flake-parts.url = \"github:hercules-ci/flake-parts\";\n      emacs-dcsunset = {\n        url = \"github:DCsunset/emacs-config\";\n        inputs.nixpkgs.follows = \"nixpkgs\";\n        inputs.flake-parts.follows = \"flake-parts\";\n      };\n    };\n\n    outputs = inputs@{ flake-parts, ... }:\n      flake-parts.lib.mkFlake { inherit inputs; } {\n        systems = [ \"x86_64-linux\" ];\n        perSystem = { pkgs, system, ... }: {\n          devShell = {\n            default = pkgs.mkShell {\n              packages = [\n                (inputs.emacs-dcsunset.packages.${system}.default.override {\n                  configVars = {\n                    # ...\n                  };\n                })\n              ];\n            };\n          };\n        };\n      };\n  }\n#+end_src\n\n\n** Supported Config Vars\n\n| Name               | Description                | Default                          |\n|--------------------+----------------------------+----------------------------------|\n| LUA_LS_CONFIG      | lua-language-server config | See =config/lsp/lua-ls-config.lua= |\n| GTD_DIR            | dir for GTD items          | -                                |\n| NOTES_DIR          | dir for notes              | -                                |\n| JOURNAL_DIR        | dir for journal            | -                                |\n| AI_URI             | OpenAI-compatible api url  | -                                |\n| AI_API_KEY         | AI api key                 | -                                |\n| AI_CHAT_MODEL      | AI chat model              | -                                |\n| AI_EMBEDDING_MODEL | AI embedding model         | -                                |\n| AI_CODING_MODEL    | AI coding model            | -                                |\n| IRC_SERVER         | IRC server                 | -                                |\n| IRC_USER           | IRC user                   | -                                |\n| IRC_NICK           | IRC nickname               | -                                |\n| IRC_PASS_FILE      | File storing IRC password  | -                                |\n\n\n** License\n\nAGPL-3.0\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdcsunset%2Femacs-config","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdcsunset%2Femacs-config","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdcsunset%2Femacs-config/lists"}