wayland: add initial config for hyprland and XDPH and implement new colors

Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
This commit is contained in:
2023-01-24 11:37:03 +05:30
parent 5fef417fb0
commit ec6533a782
8 changed files with 231 additions and 11 deletions

18
home/natto/gtk.nix Normal file
View File

@@ -0,0 +1,18 @@
{ pkgs, ... }:
{
gtk = {
enable = true;
theme = {
name = "Catppuccin-Mocha-Standard-Teal-Dark";
package = pkgs.catppuccin-gtk.override {
accents = [ "teal" ];
variant = "mocha";
};
};
iconTheme = {
package = pkgs.zafiro-icons;
name = "Zafiro-icons-Dark";
};
};
qt.platformTheme = "gtk";
}