1.0.0
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