add conversion functions to catppuccin module

This commit is contained in:
KoenDR06 2025-12-24 17:57:24 +01:00
parent 7f5c5b718f
commit 82a11ef821
10 changed files with 663 additions and 391 deletions

7
overlays/default.nix Normal file
View file

@ -0,0 +1,7 @@
# {inputs, ...}: import ./catppuccin.nix {inherit inputs;}
{inputs, ...}:
inputs.nixpkgs.lib.extend (
final: prev: {
catppuccin = import ./catppuccin.nix {inherit inputs;};
}
)