mirror of
https://github.com/xinux-org/conf-editor.git
synced 2026-02-16 00:39:44 +00:00
🎛️ | A gtk4/libadwaita app for editing NixOS configurations [maintainer=@orzklv]
- Rust 94.9%
- Meson 3.7%
- Nix 1.3%
- Shell 0.1%
| .github | ||
| build-aux | ||
| data | ||
| nce-helper | ||
| packages/nixos-conf-editor | ||
| po | ||
| shells/nixos-conf-editor | ||
| src | ||
| .envrc | ||
| .gitignore | ||
| Cargo.lock | ||
| Cargo.toml | ||
| default.nix | ||
| flake.lock | ||
| flake.nix | ||
| LICENSE | ||
| meson.build | ||
| meson_options.txt | ||
| README.md | ||
NixOS Configuration Editor
A simple NixOS configuration editor application built with libadwaita, GTK4, and Relm4. The goal of this project is to provide a simple graphical tool for modifying and managing desktop NixOS configurations.
NixOS Flakes Installation
flake.nix
{
inputs = {
# other inputs
nixos-conf-editor.url = "github:xinux-org/conf-editor";
# rest of flake.nix
configuration.nix
environment.systemPackages = with pkgs; [
inputs.nixos-conf-editor.packages.${system}.nixos-conf-editor
# rest of your packages
];
NixOS Installation
Head of configuration.nix
if you are on unstable channel or any version after 22.11:
{ config, pkgs, lib, ... }:
let
nixos-conf-editor = import (pkgs.fetchFromGitHub {
owner = "xinux-org";
repo = "conf-editor";
rev = "0.1.2";
sha256 = "sha256-/ktLbmF1pU3vFHeGooDYswJipNE2YINm0WpF9Wd1gw8=";
}) {};
in
Packages:
environment.systemPackages =
with pkgs; [
nixos-conf-editor
# rest of your packages
];
For any other method of installation, when rebuilding you will be prompted to authenticate twice in a row
'nix profile' installation
nix profile install github:xinux-org/conf-editor
'nix-env' Installation
git clone https://github.com/xinux-org/conf-editor
nix-env -f nixos-conf-editor -i nixos-conf-editor
Single run on an flakes enabled system:
nix run github:xinux-org/conf-editor
Single run on non-flakes enabled system:
nix --extra-experimental-features "nix-command flakes" run github:xinux-org/conf-editor
Debugging
RUST_LOG=nixos_conf_editor=trace nixos-conf-editor
Screenshots
Licenses
The icons in data/icons contains assets from the NixOS logo and are licensed under a CC-BY license.