Skip to content

mcornick/nixpkgs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 

Repository files navigation

Mark's nixpkgs

This is a Nix repository for software I have written. It is automatically maintained by GoReleaser.

Usage

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