This is my collection of nix stuff!
Add clrpkgs to your flake.nix
:
inputs = {
clrpkgs.url = "github:clr-cera/clrpkgs";
};
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
.
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
.