Install on NixOS

Quickly get started by adding it to your flake

1. Add Flake Input

Add the input to your flake.nix. We use FlakeHub for versioned releases.

inputs = {
    eve-preview-manager.url = "https://flakehub.com/f/h0lylag/EVE-Preview-Manager/*";
  };

2. Add Package

Add the package to your system packages.

{
  environment.systemPackages = [
    eve-preview-manager.packages.${pkgs.stdenv.hostPlatform.system}.default
  ];
}

3. Rebuild

Apply changes to your system.

sudo nixos-rebuild switch