█▄░█ ▀█▀ ▀▄▀ ▄▄ █▀█ ▄▀█ ▄▀▀ █▄▀ ▄▀█ █▀▀ █▀▀ █▀
█░▀█ ▄█▄ ▄▀▄ ⠀⠀ █▀▀ █▀█ ▀▄▄ █░█ █▀█ █▄█ ██▄ ▄█
█░▀█ ▄█▄ ▄▀▄ ⠀⠀ █▀▀ █▀█ ▀▄▄ █░█ █▀█ █▄█ ██▄ ▄█
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 = "github:PierreBorine/nix-packages";
};
}Install individual packages
{inputs, pkgs, ...}: {
home.packages = [
inputs.nix-packages.packages.${pkgs.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 |
| 🔧 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 |
| ❄️ header-gen | Custom Bash script to generate fancy comment headers |
| 🎸 lutebot | Windows program to help play music on Mordhau (install guide) |
| 🥞 push-swap-visualizer | Graphical visualizer for the 42 shool push_swap project |
| 🧠 qt6ct-kde | Fork of qt6ct with KDE color-schemes support |
| ⬇️ slsk-batchdl | Advanced download tool for Soulseek |
| 🎵 spotify-to-tidal | Command line tool for importing Spotify playlists into Tidal |
| 🖌️ 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;
}