colors: Rose Pine -> Catppuccin, font: 0xProto -> Maple Mono

This commit is contained in:
Jan Kremer 2026-02-07 15:47:54 +01:00
parent b30af1c0c2
commit 9216120374
No known key found for this signature in database
3 changed files with 21 additions and 19 deletions

View file

@ -2,7 +2,7 @@
{ {
fonts.packages = with pkgs; [ fonts.packages = with pkgs; [
jetbrains-mono jetbrains-mono
_0xproto maple-mono.truetype
]; ];
homebrew.casks = [ homebrew.casks = [
"font-chomsky" "font-chomsky"

View file

@ -1,37 +1,39 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
# Rosé Pine Moon (https://rosepinetheme.com) ## Catppuccin (https://catppuccin.com/)
programs = { programs = {
bat = { bat = {
config.theme-dark = "rose-pine"; config.theme = "catppuccin-macchiato";
config.theme-light = "rose-pine-dawn"; # config.theme-dark = "catppuccin-macchiato";
# config.theme-light = "catppuccin-latte";
themes = themes =
let let
rose-pine-github = pkgs.fetchFromGitHub { rose-pine-github = pkgs.fetchFromGitHub {
owner = "rose-pine"; owner = "catppuccin";
repo = "tm-theme"; repo = "bat";
rev = "417d201beb5f0964faded5448147c252ff12c4ae"; rev = "6810349b28055dce54076712fc05fc68da4b8ec0";
hash = "sha256-aNDOqY81FLFQ6bvsTiYgPyS5lJrqZnFMpvpTCSNyY0Y="; hash = "sha256-lJapSgRVENTrbmpVyn+UQabC9fpV1G1e+CdlJ090uvg=";
}; };
in in
{ {
rose-pine = { catppuccin-macchiato = {
src = rose-pine-github; src = rose-pine-github;
file = "dist/rose-pine.tmTheme"; file = "themes/Catppuccin Macchiato.tmTheme";
};
rose-pine-dawn = {
src = rose-pine-github;
file = "dist/rose-pine-dawn.tmTheme";
}; };
# catppuccin-latte = {
# src = rose-pine-github;
# file = "themes/Catppuccin Latte.tmTheme";
# };
}; };
}; };
ghostty.settings.theme = "dark:Rose Pine,light:Rose Pine Dawn"; ghostty.settings.theme = "Catppuccin Macchiato";
# ghostty.settings.theme = "light:Catppuccin Latte,dark:Catppuccin Macchiato";
helix.settings.theme = "rose_pine"; helix.settings.theme = "catppuccin_macchiato";
# { # {
# dark = "rose_pine"; # light = "catppuccin_latte";
# light = "rose_pine_dawn"; # dark = "catppuccin_macchiato";
# }; # };
}; };
} }

View file

@ -4,7 +4,7 @@
package = null; package = null;
enableZshIntegration = true; enableZshIntegration = true;
settings = { settings = {
font-family = "0xProto"; font-family = "Maple Mono";
font-size = 16; font-size = 16;
window-padding-x = 5; window-padding-x = 5;
window-padding-balance = true; window-padding-balance = true;