Files
dotfiles/home/natto/gtk.nix
Amneesh Singh c33a30be60 home/natto: misc changes
enable sioyek
fix gtk theme
add environment variables
change zathura config
change hyprland config

Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
2023-07-26 16:41:04 +05:30

18 lines
334 B
Nix

{ pkgs, ... }:
{
gtk = {
enable = true;
theme = {
name = "Catppuccin-Mocha-Standard-Teal-dark";
package = pkgs.catppuccin-gtk.override {
accents = [ "teal" ];
variant = "mocha";
};
};
iconTheme = {
package = pkgs.papirus-icon-theme;
name = "Papirus-Dark";
};
};
}