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.
flake.nix
{
inputs = {
# other inputs
nixos-conf-editor.url = "github:snowfallorg/nixos-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
];
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 = "snowfallorg";
repo = "nixos-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 install github:snowfallorg/nixos-conf-editor
git clone https://github.com/snowfallorg/nixos-conf-editor
nix-env -f nixos-conf-editor -i nixos-conf-editor
nix run github:snowfallorg/nixos-conf-editor
nix --extra-experimental-features "nix-command flakes" run github:snowfallorg/nixos-conf-editor
RUST_LOG=nixos_conf_editor=trace nixos-conf-editor
The icons in data/icons contains assets from the NixOS logo and are licensed under a CC-BY license.