Skip to content

clr-cera/clrpkgs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

clrpkgs

This is my collection of nix stuff!

❄️ Adding it to your flake

Add clrpkgs to your flake.nix:

inputs = {
  clrpkgs.url = "github:clr-cera/clrpkgs";
};

📦 Packages

All packages I make are inside the packages output, installing a package is as easy as adding this to you configuration:

environment.systemPackages = [inputs.clrpkgs.packages.${system}.${packageName}];

You can see all packages here.

📥 Overlays

All overlays I make are inside the overlays output, to add them to your overlays, you just need to add this to your nix configuration:

nixpkgs = {
  overlays = [
    inputs.clrpkgs.overlays.modifications
  ];
};

You can see all overlays here.