█▄░█ ▀█▀ ▀▄▀ ▄▄ █▀█ ▄▀█ ▄▀▀ █▄▀ ▄▀█ █▀▀ █▀▀ █▀
█░▀█ ▄█▄ ▄▀▄ ⠀⠀ █▀▀ █▀█ ▀▄▄ █░█ █▀█ █▄█ ██▄ ▄█
█░▀█ ▄█▄ ▄▀▄ ⠀⠀ █▀▀ █▀█ ▀▄▄ █░█ █▀█ █▄█ ██▄ ▄█
My personal Nix packages repo.
Note
You can use this flake as you wish, but I may not test or update it rigorously.
Add this flake to your's.
{
inputs = {
nix-packages.url = "git+https://codeberg.org/PierreBorine/nix-packages.git";
};
}Install individual packages
{inputs, pkgs, ...}: {
home.packages = [
inputs.nix-packages.packages.${pkgs.stdenv.hostPlatform.system}.<package_name>
];
}or add them to a custom namespace of pkgs using an overlay
{inputs, pkgs, ...}: {
nixpkgs.overlays = [
(_: prev: {my = inputs.nix-packages prev;})
];
environment.systemPackages = [pkgs.my.<package_name>];
}| Name | Description |
|---|---|
| apex-tux | Use the OLED screen on Steelseries Apex keyboards |
| asciid | A ascii themed font |
| barotrauma-modding-tool | Mod utility for the game Barotrauma |
| barotrauma-save-decompressor | Decompress Barotrauma saves |
| binbreak | Terminal based binary number guessing game |
| curv | Bezier curves lab for your terminal |
| dearpygui | Graphical User Interface Toolkit for Python |
| exabind | Animated TUI for viewing keyboard shortcuts |
| ffmpegfs | FUSE-based transcoding filesystem with ffmpeg |
| frankensteiner | Windows program to edit Mordhau mercenaries faces |
| glwall | Fragment shader renderer for live and responsive wallpapers |
| h2mm-cli | Helldivers 2 Mod Manager CLI |
| hd2arsenal | Helldivers 2 Mod Manager GUI (manual download from Nexus) |
| header-gen | Custom Bash script to generate fancy comments and headers |
| hyprselect | Hyprland plugin that adds a desktop selection box |
| libloot-cpp | A library for accessing LOOT's metadata and sorting functionality, cpp bindings. |
| loot | Modding utility for some Bethesda games. |
| lutebot | Windows program to help play music on Mordhau (install guide) |
| mo2-lint | An easy-to-use Mod Organizer 2 installer for Linux |
| slsk-batchdl | Advanced download tool for Soulseek |
| spotify-to-tidal | Command line tool for importing Spotify playlists into Tidal |
| svg-to-ico | Utility and Rust library to convert SVG icons into Windows ICO files |
| termpicker | A color picker for the terminal |
| vgamepad | Virtual XBox360 and DualShock4 gamepads in python |
| wakafetch | Terminal dashboard for WakaTime/Wakapi |
Install Apex Tux and add the necessary udev rule.
{inputs, ...}: {
imports = [inputs.nix-packages.nixosModules.apex-tux]; # or `default`
programs.apex-tux.enable = true;
}