{"id":14967925,"url":"https://github.com/arkimium/edenlinux","last_synced_at":"2025-10-25T21:32:20.517Z","repository":{"id":248442503,"uuid":"828439691","full_name":"arkimium/edenlinux","owner":"arkimium","description":"Lancelot's NixOS Configurations - Codename edenlinux","archived":true,"fork":false,"pushed_at":"2024-07-16T08:48:36.000Z","size":16129,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-12-17T14:11:29.914Z","etag":null,"topics":["declarative","declarative-language","home-manager","hyprland","justfile","linux","nix","nix-flake","nixos","nixos-configuration"],"latest_commit_sha":null,"homepage":"https://arkimium.github.io","language":"Nix","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/arkimium.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-07-14T06:40:51.000Z","updated_at":"2024-10-26T13:30:57.000Z","dependencies_parsed_at":null,"dependency_job_id":"cac7bd23-aead-4179-add4-1272ac6304f9","html_url":"https://github.com/arkimium/edenlinux","commit_stats":{"total_commits":7,"total_committers":2,"mean_commits":3.5,"dds":0.4285714285714286,"last_synced_commit":"ab365e165f4b4aa24f4d9d5c3b006aaec7fb3dd7"},"previous_names":["arkimium/edenlinux"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arkimium%2Fedenlinux","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arkimium%2Fedenlinux/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arkimium%2Fedenlinux/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arkimium%2Fedenlinux/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/arkimium","download_url":"https://codeload.github.com/arkimium/edenlinux/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238018670,"owners_count":19402757,"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":["declarative","declarative-language","home-manager","hyprland","justfile","linux","nix","nix-flake","nixos","nixos-configuration"],"created_at":"2024-09-24T13:38:53.124Z","updated_at":"2025-10-25T21:32:14.772Z","avatar_url":"https://github.com/arkimium.png","language":"Nix","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Presents](https://github.com/user-attachments/assets/9a85abf8-a343-43e4-bafe-cb295bc34e8f)\n# edenlinux\nSource Code for Eden Linux - NixOS Stylish Release\n\n[Coming Soon with NixCon 2024 Berlin!](https://nixos.org/blog/announcements/2024/nixcon-2024/)\n\n[![NixOS build Version](https://img.shields.io/badge/NixOS%20Build-24.05-blue)](https://nixos.org/blog/announcements/2024/nixos-2405/)\n[![Hyprland Supported](https://img.shields.io/badge/Hyprland-blue?\u0026style=for-the-badge\u0026logo=hyprland\u0026logoColor=white)](https://wiki.hyprland.org/Nix/Hyprland-on-NixOS/)\n\n# Introduction\nThe Repository now release **yarnOS** Configuration. Included\n- **configuration.nix**: Configurations, include nixpkgs below\n  ```nix\n    # Define a user account. Don't forget to set a password with ‘passwd’.\n  users.users.belle = {\n    isNormalUser = true;\n    description = \"Belle\";\n    # passwd = \"nixos\";  # I found that user.user.username.passwd is undefined. So I give it up.\n    extraGroups = [ \"wheel\" \"networkmanager\" ]; # Enable ‘sudo’ for the user.\n    packages = with pkgs; [\n      chromium\n      oxygen\n      konsole\n      fastfetch\n      zsh\n    ];\n  };\n\n  \n  # List packages installed in system profile. To search, run:\n  # $ nix search wget\n  environment.systemPackages = with pkgs; [\n    neovim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.\n    neovide\n    vimPlugins.lazy-nvim\n    wget\n    curl\n    git\n    jetbrains.writerside\n    jetbrains.webstorm\n    jetbrains.ruby-mine\n    jetbrains.rust-rovers\n    jetbrains.rider\n    jetbrains.phpstorm\n    jetbrains.mps\n    jetbrains.clion\n    jetbrains.goland\n    jetbrains.idea-ultimate\n    jetbrains.gateway\n    jetbrains.dataspell\n    jetbrains.pycharm-comminity\n    vscode\n    android-studio\n    GitLab\n    github-desktop\n  ];\n  ```\n- home.nix, now just enable **Hyprland** now. It'll be added some Hyprland configurations.\n- flake.nix, enable Plymouth (PS. Doesn't work now.)\n\nThis release will provide a `.ovf` virtual machine in _8GB+64GB_. We are trying our best to develop it. The account infomation below:\n```\nhostname: New_Eridu\nUsername: Belle\nPasswd: nixos\n```\n# Installation\n1. Install by NixOS\n  - If you already had an NixOS host and installed a **command runner** called `just`. Then run \n  ```shell\n  sudo git clone https://github.com/arkimium/edenlinux.git\n  just deploy\n  ```\n  Uh if no `just` then run `nixos-rebuild switch`.\n  \n  ~~Hey don't GitHub release their GitHub CLI `gh`? You can use it!~~ Well if you have `gh`. It'll be easily execute.\n  ```shell\n  sudo gh repo clone arkimium/edenlinux\n  cd edenlinux\n  just deploy \u0026\u0026 reboot   # or nixos-rebuild switch\n  ```\n# Support Desktop Environments\n- KDE 5/6\n- GNOME\n- XFCE\n- MATE\n- HikariWM (in [Darcs.hub](https://hub.darcs.net/raichoo/hikari-website))\n- Hyprland\n- Emacs EXWM (Emacs-like X Compositor built on Emacs)\n- ...\n\n# Issue\n- `flake.nix` doesn't work. I'll renew it on Saturday. \n- I wanna **enable Plymouth**. Plymouth was installed but I can't execute `plymouth-set-default-theme`. However the binary executable file was in Plymouth's file folder. Weird! Why I can't execute this command? Finding help in **NixOS Discourse**.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farkimium%2Fedenlinux","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farkimium%2Fedenlinux","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farkimium%2Fedenlinux/lists"}