Personal NUR repository for snowdreamtech packages.
| Package | Description |
|---|---|
| unirtm | UniRTM (Uni Runtime and Tools Manager) — cross-platform developer toolchain manager |
UniRTM is a cross-platform tool that runs on Linux, macOS, and Windows. It helps developers unify and easily manage runtime environments, tools, and project-level tasks. For detailed usage, visit the UniRTM Official Repository.
You can use the packages in this repository in several ways within your Nix environment.
If you have Flakes enabled, you can run UniRTM directly for testing:
nix run github:snowdreamtech/nur#unirtm -- --helpOr install it to your current user profile:
nix profile install github:snowdreamtech/nur#unirtmAdd it to your project flake.nix or NixOS configuration:
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
nur.url = "github:snowdreamtech/nur";
};
outputs = { self, nixpkgs, nur, ... }: {
nixosConfigurations.my-machine = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
nur.nixosModules.nur
# ... other configs ...
];
};
};
}Include it in configuration.nix or other configurations by fetching the tarball:
{ ... }:
let
nur = import (builtins.fetchTarball "https://github.com/snowdreamtech/nur/archive/master.tar.gz") {
inherit pkgs;
};
in
{
environment.systemPackages = [
nur.repos.snowdreamtech.unirtm
];
}This project is licensed under the MIT License.