1
Fork 0
mirror of https://github.com/RGBCube/ThemeNix synced 2025-07-28 17:07:46 +00:00

Add templates & a slug attribute to themes

This commit is contained in:
RGBCube 2023-11-26 19:32:29 +03:00
parent 813ba52ead
commit d8ed419eff
No known key found for this signature in database
256 changed files with 835 additions and 4 deletions

View file

@ -58,5 +58,9 @@
with0x = builtins.mapAttrs (_: value: "0x" + value) enrichedThemeOnlyColors;
withHashtag = builtins.mapAttrs (_: value: "#" + value) enrichedThemeOnlyColors;
};
in enrichedTheme // enrichedThemeHelpers) (import ./themes.nix);
templates = builtins.mapAttrs (_: value: {
tmTheme = (import ./templates/tmTheme.nix) value;
}) enrichedTheme;
in enrichedTheme // enrichedThemeHelpers // templates) (import ./themes.nix);
}