{"id":13683040,"url":"https://github.com/snowfallorg/nixos-conf-editor","last_synced_at":"2025-04-05T00:07:35.592Z","repository":{"id":46335000,"uuid":"498487141","full_name":"snowfallorg/nixos-conf-editor","owner":"snowfallorg","description":"A libadwaita/gtk4 app for editing NixOS configurations","archived":false,"fork":false,"pushed_at":"2024-02-07T20:33:54.000Z","size":949,"stargazers_count":539,"open_issues_count":16,"forks_count":13,"subscribers_count":9,"default_branch":"main","last_synced_at":"2025-03-28T23:04:50.232Z","etag":null,"topics":["gtk4","libadwaita","nixos"],"latest_commit_sha":null,"homepage":"","language":"Rust","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/snowfallorg.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":"2022-05-31T20:25:42.000Z","updated_at":"2025-03-27T07:22:11.000Z","dependencies_parsed_at":"2023-02-10T11:30:26.006Z","dependency_job_id":"e8172818-4afd-48e9-9388-b8e0378d3540","html_url":"https://github.com/snowfallorg/nixos-conf-editor","commit_stats":null,"previous_names":["snowfallorg/nixos-conf-editor","vlinkz/nixos-conf-editor"],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/snowfallorg%2Fnixos-conf-editor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/snowfallorg%2Fnixos-conf-editor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/snowfallorg%2Fnixos-conf-editor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/snowfallorg%2Fnixos-conf-editor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/snowfallorg","download_url":"https://codeload.github.com/snowfallorg/nixos-conf-editor/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247266563,"owners_count":20910836,"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":["gtk4","libadwaita","nixos"],"created_at":"2024-08-02T13:01:58.359Z","updated_at":"2025-04-05T00:07:35.565Z","avatar_url":"https://github.com/snowfallorg.png","language":"Rust","funding_links":[],"categories":["Rust","NixOS Configuration Editors"],"sub_categories":["Desktop apps"],"readme":"\u003cdiv align=\"center\"\u003e\n\n\u003cimg src=\"data/icons/dev.vlinkz.NixosConfEditor.svg\"/\u003e\n\nNixOS Configuration Editor\n===\n\n[![Built with Nix][builtwithnix badge]][builtwithnix]\n[![License: GPLv3][GPLv3 badge]][GPLv3]\n[![Chat on Matrix][matrix badge]][matrix]\n[![Chat on Discord][discord badge]][discord]\n\nA simple NixOS configuration editor application built with [libadwaita](https://gitlab.gnome.org/GNOME/libadwaita), [GTK4](https://www.gtk.org/), and [Relm4](https://relm4.org/). The goal of this project is to provide a simple graphical tool for modifying and managing desktop NixOS configurations.\n\n\u003cimg src=\"data/screenshots/multiwindowlight.png#gh-light-mode-only\"/\u003e\n\u003cimg src=\"data/screenshots/multiwindowdark.png#gh-dark-mode-only\"/\u003e \n\n\u003c/div\u003e\n\n## NixOS Flakes Installation\n`flake.nix`\n```nix\n{\n  inputs = {\n    # other inputs\n    nixos-conf-editor.url = \"github:snowfallorg/nixos-conf-editor\";\n    # rest of flake.nix\n```\n\n`configuration.nix`\n```nix\nenvironment.systemPackages = with pkgs; [\n    inputs.nixos-conf-editor.packages.${system}.nixos-conf-editor\n    # rest of your packages\n];\n```\n\n## NixOS Installation\n\nHead of `configuration.nix`\n\nif you are on unstable channel or any version after 22.11:\n```nix\n{ config, pkgs, lib, ... }:\nlet\n  nixos-conf-editor = import (pkgs.fetchFromGitHub {\n    owner = \"snowfallorg\";\n    repo = \"nixos-conf-editor\";\n    rev = \"0.1.2\";\n    sha256 = \"sha256-/ktLbmF1pU3vFHeGooDYswJipNE2YINm0WpF9Wd1gw8=\";\n  }) {};\nin\n```\nPackages:\n\n```nix\nenvironment.systemPackages =\nwith pkgs; [\n  nixos-conf-editor\n  # rest of your packages\n];\n```\nFor any other method of installation, when rebuilding you will be prompted to authenticate twice in a row\n\n## 'nix profile' installation\n```bash\nnix profile install github:snowfallorg/nixos-conf-editor\n```\n\n## 'nix-env' Installation\n\n```bash\ngit clone https://github.com/snowfallorg/nixos-conf-editor\nnix-env -f nixos-conf-editor -i nixos-conf-editor \n```\n\n## Single run on an flakes enabled system:\n```bash\nnix run github:snowfallorg/nixos-conf-editor\n```\n\n## Single run on non-flakes enabled system:\n```bash\nnix --extra-experimental-features \"nix-command flakes\" run github:snowfallorg/nixos-conf-editor\n```\n\n## Debugging\n\n```bash\nRUST_LOG=nixos_conf_editor=trace nixos-conf-editor\n```\n\n# Screenshots\n\n\u003cp align=\"middle\"\u003e\n  \u003cimg src=\"data/screenshots/listviewlight.png#gh-light-mode-only\"/\u003e\n  \u003cimg src=\"data/screenshots/listviewdark.png#gh-dark-mode-only\"/\u003e \n\u003c/p\u003e\n\n\u003cp align=\"middle\"\u003e\n  \u003cimg src=\"data/screenshots/optionlight.png#gh-light-mode-only\"/\u003e\n  \u003cimg src=\"data/screenshots/optiondark.png#gh-dark-mode-only\"/\u003e \n\u003c/p\u003e\n\n\u003cp align=\"middle\"\u003e\n  \u003cimg src=\"data/screenshots/searchlight.png#gh-light-mode-only\"/\u003e\n  \u003cimg src=\"data/screenshots/searchdark.png#gh-dark-mode-only\"/\u003e \n\u003c/p\u003e\n\n\u003cp align=\"middle\"\u003e\n  \u003cimg src=\"data/screenshots/rebuildlight.png#gh-light-mode-only\"/\u003e\n  \u003cimg src=\"data/screenshots/rebuilddark.png#gh-dark-mode-only\"/\u003e \n\u003c/p\u003e\n\n\u003cp align=\"middle\"\u003e\n  \u003cimg src=\"data/screenshots/invalidlight.png#gh-light-mode-only\"/\u003e\n  \u003cimg src=\"data/screenshots/invaliddark.png#gh-dark-mode-only\"/\u003e \n\u003c/p\u003e\n\n## Licenses\n\nThe icons in [data/icons](data/icons/) contains assets from the [NixOS logo](https://github.com/NixOS/nixos-artwork/tree/master/logo) and are licensed under a [CC-BY license](https://creativecommons.org/licenses/by/4.0/).\n\n[builtwithnix badge]: https://img.shields.io/badge/Built%20With-Nix-41439A?style=for-the-badge\u0026logo=nixos\u0026logoColor=white\n[builtwithnix]: https://builtwithnix.org/\n[GPLv3 badge]: https://img.shields.io/badge/License-GPLv3-blue.svg?style=for-the-badge\n[GPLv3]: https://opensource.org/licenses/GPL-3.0\n[matrix badge]: https://img.shields.io/badge/matrix-join%20chat-0cbc8c?style=for-the-badge\u0026logo=matrix\u0026logoColor=white\n[matrix]: https://matrix.to/#/#snowflakeos:matrix.org\n[discord badge]: https://img.shields.io/discord/1021080090676842506?color=7289da\u0026label=Discord\u0026logo=discord\u0026logoColor=ffffff\u0026style=for-the-badge\n[discord]: https://discord.gg/6rWNMmdkgT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsnowfallorg%2Fnixos-conf-editor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsnowfallorg%2Fnixos-conf-editor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsnowfallorg%2Fnixos-conf-editor/lists"}