From d6ab8b9aafe619381f526e7c582791b07e1c6eea Mon Sep 17 00:00:00 2001 From: EinEtwas Date: Wed, 16 Oct 2024 22:52:08 +0200 Subject: [PATCH] feat: implement catppuccin (for alacritty and waybar) --- home/alacritty.nix | 2 +- home/default.nix | 7 ++++++- home/waybar/waybar.css | 4 ++-- home/zsh.nix | 2 +- 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/home/alacritty.nix b/home/alacritty.nix index 1c9e4f6..da3e60b 100644 --- a/home/alacritty.nix +++ b/home/alacritty.nix @@ -1,6 +1,6 @@ { programs.alacritty = { enable = true; - # catppuccin.enable = true; + catppuccin.enable = true; }; } \ No newline at end of file diff --git a/home/default.nix b/home/default.nix index 03543a8..8130b2c 100644 --- a/home/default.nix +++ b/home/default.nix @@ -17,7 +17,13 @@ home.homeDirectory = "/home/rhea"; programs.home-manager.enable = true; + catppuccin = { + flavor = "macchiato"; + accent = "mauve"; + }; + imports = [ + inputs.catppuccin.homeManagerModules.catppuccin ./hyprland.nix ./git.nix ./waybar @@ -29,7 +35,6 @@ ./packages.nix ./alacritty.nix ./zsh.nix - inputs.catppuccin.homeManagerModules.catppuccin ]; # catppuccin.accent = "mocha"; diff --git a/home/waybar/waybar.css b/home/waybar/waybar.css index 5ddb8d3..6b040de 100644 --- a/home/waybar/waybar.css +++ b/home/waybar/waybar.css @@ -49,8 +49,8 @@ /* The whole bar */ #waybar { - background: #323232; - color: white; + background: #24273a; + color: #f0c6c6; font-family: Cantarell, Noto Sans, sans-serif; font-size: 12px; } diff --git a/home/zsh.nix b/home/zsh.nix index eecdb6f..1cc0f63 100644 --- a/home/zsh.nix +++ b/home/zsh.nix @@ -1,7 +1,7 @@ { programs.zsh = { enable = true; - + autocd = true; shellAliases = { os-update = "nh os switch /home/rhea/nix-config/";