Skip to content

debling/nix-overlays

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 

Repository files navigation

nix-overlays

Personal nixpkgs overlays, that add the following packages:

Usage

At user level, you can use this overlay with nix by cloning this repo in ~/.config/nixpkgs/overlays:

mkdir -p ~/.config/nixpkgs
git clone https://github.com/debling/nix-overlays.git ~/.config/nixpkgs/overlays

After cloning, you can install any package from the overlay with nix-env -iA nixos.packageFromOverlay.

If the goal is using inside at system level, inside your configuration.nix:

{ config, pkgs, ... }:

let
  customPkgs = import <nixpkgs> {
    overlays = [
      (import (builtins.fetchTarball "https://github.com/debling/nix-overlays/archive/master.tar.gz"))
    ];
  };
in {
  environment.systemPackages = with pkgs; [ customPkgs.packageFromOverlay ];
}

About

Personal nixpkgs overlays

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages