Skip to content

1.0.0

Compare
Choose a tag to compare
@fndov fndov released this 17 Oct 02:32
· 25 commits to stable since this release
72d4f15

Nixedit

Installation Instructions

You can install nixedit using the provided package.nix file.

Configuration:

Step 1. Create the directory and download package.nix.

mkdir ~/.nixedit; cd ~/.nixedit
curl -L -o package.nix https://raw.githubusercontent.com/fndov/nixedit/874f924113e6733380e37e2d38e1a94e66c45f3d/package.nix

Step 2. Include in your configuration.nix

nixpkgs.config.packageOverrides = pkgs: {
  nixedit = pkgs.callPackage /home/USERNAME/.nixedit/package.nix { };
};

environment.systemPackages = with pkgs; [
  nixedit
];

Step 3. Install the package.

sudo nixos-rebuild switch