ondt's Nix User Repository Available packages nur.repos.ondt.lemonade: A multithreaded alternative to lemonbar written in rust nur.repos.ondt.csvlens: Command line csv viewer nur.repos.ondt.ulozto-downloader: Paralelní stahovač z Ulož.to s automatickým louskáním CAPTCHA kódů nur.repos.ondt.xss-events: Simple X11 ScreenSaver event listener nur.repos.ondt.xvisbell: Visual Bell for X11 Channels channel:nixos-unstable Adding the NUR repository # /etc/nixos/configuration.nix { nixpkgs.config.packageOverrides = pkgs: { nur = import (builtins.fetchTarball "https://github.com/nix-community/NUR/archive/master.tar.gz") { inherit pkgs; }; }; } Adding the NUR repository as a channel sudo nix-channel --add https://github.com/nix-community/NUR/archive/master.tar.gz nur sudo nix-channel --update # /etc/nixos/configuration.nix { nixpkgs.config.packageOverrides = pkgs: { nur = import <nur> { inherit pkgs; }; }; } Adding the binary cache # /etc/nixos/configuration.nix { nix = { binaryCaches = [ "https://ondt.cachix.org" ]; binaryCachePublicKeys = [ "ondt.cachix.org-1:bfVL4zF1qPjwrhAITTRqE7ZHEjNrBkqrb28ffYatMJk=" ]; }; } Installing a package # /etc/nixos/configuration.nix { environment.systemPackages = with pkgs; [ nur.repos.ondt.lemonade ]; }