37 lines
963 B
Nix
37 lines
963 B
Nix
{ pkgs, ... }:
|
|
{
|
|
# Rosé Pine Moon (https://rosepinetheme.com)
|
|
programs = {
|
|
bat = {
|
|
config.theme-dark = "rose-pine";
|
|
config.theme-light = "rose-pine-dawn";
|
|
themes =
|
|
let
|
|
rose-pine-github = pkgs.fetchFromGitHub {
|
|
owner = "rose-pine";
|
|
repo = "tm-theme";
|
|
rev = "417d201beb5f0964faded5448147c252ff12c4ae";
|
|
hash = "sha256-aNDOqY81FLFQ6bvsTiYgPyS5lJrqZnFMpvpTCSNyY0Y=";
|
|
};
|
|
in
|
|
{
|
|
rose-pine = {
|
|
src = rose-pine-github;
|
|
file = "dist/themes/rose-pine.tmTheme";
|
|
};
|
|
rose-pine-dawn = {
|
|
src = rose-pine-github;
|
|
file = "dist/themes/rose-pine-dawn.tmTheme";
|
|
};
|
|
};
|
|
};
|
|
|
|
ghostty.settings.theme = "dark:Rose Pine,light:Rose Pine Dawn";
|
|
|
|
helix.settings.theme = "rose_pine";
|
|
# {
|
|
# dark = "rose_pine";
|
|
# light = "rose_pine_dawn";
|
|
# };
|
|
};
|
|
}
|