{"id":15171758,"url":"https://github.com/wueestry/nixos-config","last_synced_at":"2025-10-26T00:30:43.718Z","repository":{"id":245236236,"uuid":"817180131","full_name":"wueestry/nixos-config","owner":"wueestry","description":"Current nixos configuration using snowfall lib as flake structure","archived":false,"fork":false,"pushed_at":"2024-10-23T19:09:37.000Z","size":5783,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-10-24T05:31:50.676Z","etag":null,"topics":["dotfiles","home-manager-config","linux","nixos","nixos-configuration","snowfall","snowfall-lib"],"latest_commit_sha":null,"homepage":"","language":"Nix","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wueestry.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-06-19T07:24:25.000Z","updated_at":"2024-10-23T19:09:40.000Z","dependencies_parsed_at":"2024-10-23T23:21:14.787Z","dependency_job_id":null,"html_url":"https://github.com/wueestry/nixos-config","commit_stats":{"total_commits":36,"total_committers":2,"mean_commits":18.0,"dds":0.05555555555555558,"last_synced_commit":"270a2112e023611251d41bf6d1bcf716bfe02202"},"previous_names":["wueestry/nixos-config"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wueestry%2Fnixos-config","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wueestry%2Fnixos-config/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wueestry%2Fnixos-config/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wueestry%2Fnixos-config/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wueestry","download_url":"https://codeload.github.com/wueestry/nixos-config/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238229940,"owners_count":19437723,"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":["dotfiles","home-manager-config","linux","nixos","nixos-configuration","snowfall","snowfall-lib"],"created_at":"2024-09-27T09:03:34.985Z","updated_at":"2025-10-26T00:30:42.571Z","avatar_url":"https://github.com/wueestry.png","language":"Nix","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003e \u003cimg src=\"./.github/assets/flake.webp\" width=\"250px\"/\u003e\u003c/h1\u003e\n\u003ch2 align=\"center\"\u003eMy NixOS flake made with \u003ca href=\"https://github.com/snowfallorg/lib\"\u003esnowfall\u003c/a\u003e.\u003c/h2\u003e\n\n\u003cimg src=\"https://github.com/wueestry/nixos-config/blob/master/.github/assets/desktop.png\" width=\"1000\" /\u003e\n\n## Systems\n\n- *Apollo*: Homeserver\n    - Running the following services on a tailscale network\n        - Audiobookshelf\n        - Calibre / Calibre Web\n        - Firefly III\n        - Immich\n        - Jellyfin\n        - Nextcloud\n        - Mealie\n        - Wanderer\n\n- *Ares*: Workstation (AMD Ryzen 7 5800X, NVIDIA RTX 3070)\n    - Dual boot with Windows\n\n- *Athena*: Lenovo Yoga Pro 7X Slim Nvidia\n    - Used for development\n\n## Installation\n1. Enable flakes in nixos. By adding the following lines to `/etc/nixos/config.nix`.\n```\nnix = {\n  package = pkgs.nixFlakes;\n  extraOptions = \"experimental-features = nix-command flakes\";\n};\n```\n2. Add **git** to your nixos configuration.\n```\nsystemPackages = with pkgs; [\n  git\n];\n```\n3. Rebuild nixos by running `sudo nixos-rebuild switch`.\n4. Clone repo `git clone git@github.com:wueestry/nixos-config.git`. Enter into repo by running `cd nixos-config`.\n5. Copy own hardware file into repo `sudo cp /etc/nixos/hardware-configuration.nix ~/nixos-config/systems/{computer architecture}/{desired config}/hardware.nix`.\n6. Build flakes by running `sudo nixos-rebuild boot --flake .#{desired config}`.\n7. *Optional*: Update nixpkgs by running `nix flake update` and then rebuild system as described in step 6.\n\n### Add your own config\n1. Add your own nixos config into the directory `systems/{computer architecture}/{config name}/default.nix`.\n2. Add your hardware config to `systems/{computer architecture}/{config name}/hardware.nix`.\n3. Add your home manager config into the directory `homes/{computer architecture}/{user}@{config name}`.\n4. *Optional*: Add specific nixos-hardware package to the `flake.nix` file. Similar to:\n```\nsystems.hosts.athena.modules = with inputs; [\n  nixos-hardware.nixosModules.lenovo-yoga-7-14ARH7-nvidia\n];\n```\n\n### Generating user-dirs\n\nAfter a fresh install, the user home directory is completly empty. In order to generate the Documents, Downloads, eg. subfolders run\n```\nnix-shell -p xdg-user-dirs\nxdg-user-dirs-update\n```\n\n## Inspiration\nThanks to the work of the following projects which inspired this configuration:\n- [anotherhadi/nixy](https://github.com/anotherhadi/nixy)\n- [jakehamilton/config](https://github.com/jakehamilton/config)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwueestry%2Fnixos-config","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwueestry%2Fnixos-config","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwueestry%2Fnixos-config/lists"}