Switch to Hyprland & them with Catppuccin

This commit is contained in:
Gene Liverman 2023-09-14 21:41:46 -04:00
parent 41bf9dc9fa
commit f9836386b3
4 changed files with 84 additions and 22 deletions

View file

@ -13,6 +13,7 @@
meld
mtr
nix-zsh-completions
nurl
rename
slack
subversion
@ -30,7 +31,15 @@
bat = {
enable = true;
config = {
theme = "Dracula";
theme = "Catppuccin-frappe";
};
themes = {
Catppuccin-frappe = builtins.readFile (pkgs.fetchFromGitHub {
owner = "catppuccin";
repo = "bat";
rev = "ba4d16880d63e656acced2b7d4e034e4a93f74b1";
hash = "sha256-6WVKQErGdaqb++oaXnY3i6/GuH2FhTgK0v4TN4Y0Wbw=";
} + "/Catppuccin-frappe.tmTheme");
};
};
eza.enable = true;

View file

@ -0,0 +1,33 @@
{ pkgs, ... }: {
programs = {
waybar = {
enable = true;
};
};
services.dunst = {
enable = true;
settings = {
global = {
frame_color = "#8CAAEE";
separator_color= "frame";
};
urgency_low = {
background = "#303446";
foreground = "#C6D0F5";
};
urgency_normal = {
background = "#303446";
foreground = "#C6D0F5";
};
urgency_critical = {
background = "#303446";
foreground = "#C6D0F5";
frame_color = "#EF9F76";
};
};
};
}