Set up some packages

This commit is contained in:
outfoxxed 2023-06-20 23:47:58 -07:00
parent d6495fe305
commit 741eb1d5ce
Signed by: outfoxxed
GPG key ID: 4C88A185FB89301E
6 changed files with 58 additions and 3 deletions

View file

@ -0,0 +1,5 @@
{
nixpkgs.overlays = [(final: prev: {
kwrite = final.callPackage ./kwrite.nix {};
})];
}

View file

@ -0,0 +1,3 @@
{ kate }: kate.overrideAttrs (_: _: {
cmakeFlags = [ "-DBUILD_kate=FALSE" ];
})