stylix/modules/fish/prompt.nix
Bernardo Meurer b42555850b
Move all templates into flake inputs (#165)
This reduces our reliance on import-from-derivation, so evaluation is faster.
2023-10-10 10:44:54 +01:00

10 lines
194 B
Nix

{ pkgs, config }:
let
theme = config.lib.stylix.colors {
templateRepo = config.lib.stylix.templates.base16-fish;
};
in ''
source ${theme}
base16-${config.lib.stylix.colors.slug}
''