This is a Nix repository for software I have written. It is automatically maintained by GoReleaser.
Add to ~/.config/nixpkgs/config.nix
:
{
packageOverrides = pkgs: {
mcornick = import (builtins.fetchGit { url = "https://github.com/mcornick/nixpkgs.git"; }) {
inherit pkgs;
};
};
}
and/or add to /etc/nixos/configuration.nix
:
{
nixpkgs.config.packageOverrides = pkgs: {
mcornick = import (builtins.fetchGit { url = "https://github.com/mcornick/nixpkgs.git"; }) {
inherit pkgs;
};
};
}
and then nix-env -iA nixos.mcornick.clilol