various catppuccin changes

This commit is contained in:
Sean Kovacs 2026-01-14 16:54:50 -05:00
commit 730f7fbceb
Signed by: sckova
GPG key ID: 00F325187C68651A
7 changed files with 23 additions and 17 deletions

View file

@ -1,11 +1,7 @@
{ {pkgs, ...}: {
config,
pkgs,
...
}: {
catppuccin = { catppuccin = {
accent = "peach"; accent = "lavender";
flavor = "mocha"; flavor = "macchiato";
}; };
home.packages = with pkgs; [ home.packages = with pkgs; [
@ -15,7 +11,6 @@
asahi-wifisync asahi-wifisync
moonlight-qt moonlight-qt
# spotify-webapp
]; ];
# https://github.com/YaLTeR/niri/issues/2330#issuecomment-3256864777 # https://github.com/YaLTeR/niri/issues/2330#issuecomment-3256864777
@ -44,7 +39,7 @@
]; ];
shortcuts = { shortcuts = {
# this is really annoying on asahi laptops # this is really annoying on apple laptops
org_kde_powerdevil.Sleep = []; org_kde_powerdevil.Sleep = [];
}; };

View file

@ -41,9 +41,11 @@
text = let text = let
flavor = config.catppuccin.flavor; flavor = config.catppuccin.flavor;
palette = pkgs.catppuccin.bare.${flavor}; palette = pkgs.catppuccin.bare.${flavor};
accent = config.catppuccin.accent;
in in
lib.concatStringsSep "\n" ( lib.concatStringsSep "\n" (
lib.mapAttrsToList (name: value: "set -g color_${name} ${value}") palette (lib.mapAttrsToList (name: value: "set -g color_${name} ${value}") palette)
++ ["set -g color_accent ${palette.${accent}}"]
); );
force = true; force = true;
}; };

View file

@ -11,11 +11,11 @@ set -g color_cwd $color_green
# Set host color based on hostname # Set host color based on hostname
if test (hostname) = peach if test (hostname) = peach
set -g color_host $color_peach set -g color_host $color_accent
else if test (hostname) = alien else if test (hostname) = alien
set -g color_host $color_blue set -g color_host $color_accent
else if test (hostname) = vm else if test (hostname) = vm
set -g color_host $color_green set -g color_host $color_accent
set -g color_cwd normal set -g color_cwd normal
else if test (uname) = Darwin else if test (uname) = Darwin
set -g color_host $color_yellow set -g color_host $color_yellow

View file

@ -43,7 +43,6 @@
catppuccin = { catppuccin = {
enable = true; enable = true;
flavor = "mocha";
cache.enable = true; cache.enable = true;
}; };

View file

@ -23,7 +23,10 @@
''; '';
hardware.i2c.enable = true; hardware.i2c.enable = true;
catppuccin.accent = "blue"; catppuccin = {
accent = "blue";
flavor = "mocha";
};
boot.loader.systemd-boot.consoleMode = "max"; boot.loader.systemd-boot.consoleMode = "max";
boot.kernelPackages = pkgs.linuxPackages; boot.kernelPackages = pkgs.linuxPackages;

View file

@ -3,7 +3,11 @@
boot.kernelParams = ["apple_dcp.show_notch=1"]; boot.kernelParams = ["apple_dcp.show_notch=1"];
catppuccin.accent = "peach"; catppuccin = {
accent = "lavender";
flavor = "macchiato";
};
services.displayManager.gdm.enable = true; services.displayManager.gdm.enable = true;
hardware.asahi = { hardware.asahi = {

View file

@ -1,7 +1,10 @@
{catppuccin, ...}: { {catppuccin, ...}: {
networking.hostName = "vm"; networking.hostName = "vm";
catppuccin.accent = "green"; catppuccin = {
accent = "green";
flavor = "mocha";
};
home-manager.users.sckova = { home-manager.users.sckova = {
imports = [catppuccin.homeModules.catppuccin]; imports = [catppuccin.homeModules.catppuccin];