22 lines
548 B
Nix
22 lines
548 B
Nix
{ pkgs, ... }:
|
|
{
|
|
# Rosé Pine Moon (https://rosepinetheme.com)
|
|
programs = {
|
|
bat = {
|
|
config.theme = "rose-pine";
|
|
themes.rose-pine = {
|
|
src = pkgs.fetchFromGitHub {
|
|
owner = "rose-pine";
|
|
repo = "tm-theme";
|
|
rev = "c4235f9a65fd180ac0f5e4396e3a86e21a0884ec";
|
|
hash = "sha256-jji8WOKDkzAq8K+uSZAziMULI8Kh7e96cBRimGvIYKY=";
|
|
};
|
|
file = "dist/themes/rose-pine.tmTheme";
|
|
};
|
|
};
|
|
|
|
ghostty.settings.theme = "rose-pine";
|
|
|
|
helix.settings.theme = "rose_pine";
|
|
};
|
|
}
|