This repository contains the NixOS package for Elite Dangerous HUD Mod:
- EDHM-UI-V3: A mod for Elite Dangerous that allows customization of ship HUD elements
# Run EDHM UI directly
nix run github:yourusername/EDHM
# Install EDHM
nix profile install github:yourusername/EDHM# Clone the repository
git clone https://github.com/yourusername/EDHM.git
cd EDHM
# Run locally
nix run .
# Install from local clone
nix profile install .Add this to your flake.nix inputs:
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
edhm = {
url = "github:yourusername/EDHM";
# Optional: pin to a specific commit for reproducibility
# url = "github:yourusername/EDHM/abc123def456";
inputs.nixpkgs.follows = "nixpkgs";
};
};
}Then in your NixOS configuration:
{ inputs, ... }:
{
imports = [ inputs.edhm.nixosModules.default ];
programs.edhm.enable = true;
}# Build package
nix build .#edhm-ui
# Install to profile
nix profile install .#edhm-ui# Enter development shell
nix develop
# Build package
nix build .#edhm-ui
# Test package
nix run .#edhm-ui- Version: 3.0.43
- Homepage: https://github.com/BlueMystical/EDHM_UI
- Description: Elite Dangerous HUD Mod - UI for customizing ship HUD
- License: GPL-3.0
To update the package version:
- Update the version and SHA256 hash in
edhm-ui.nix - Test the build:
nix build .#edhm-ui - Submit a pull request
This packaging is provided under the same license as the upstream project (GPL-3.0).