ondt's Nix User Repository
nur.repos.ondt.lemonade
: A multithreaded alternative to lemonbar written in rustnur.repos.ondt.csvlens
: Command line csv viewernur.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 listenernur.repos.ondt.xvisbell
: Visual Bell for X11
channel:nixos-unstable
# /etc/nixos/configuration.nix
{
nixpkgs.config.packageOverrides = pkgs: {
nur = import (builtins.fetchTarball "https://github.com/nix-community/NUR/archive/master.tar.gz") {
inherit pkgs;
};
};
}
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;
};
};
}
# /etc/nixos/configuration.nix
{
nix = {
binaryCaches = [ "https://ondt.cachix.org" ];
binaryCachePublicKeys = [ "ondt.cachix.org-1:bfVL4zF1qPjwrhAITTRqE7ZHEjNrBkqrb28ffYatMJk=" ];
};
}
# /etc/nixos/configuration.nix
{
environment.systemPackages = with pkgs; [
nur.repos.ondt.lemonade
];
}