snowfield/home-manager-modules/gtk/default.nix
2023-02-04 23:33:51 +01:00

27 lines
526 B
Nix

{ config, pkgs, lib, ... }:
let
cfg = config.luj.programs.gtk;
in
with lib;
{
options.luj.programs.gtk = {
enable = mkEnableOption "Enable gtk customizations";
};
config = mkIf cfg.enable {
gtk = {
enable = true;
theme = {
name = "Catppuccin-Macchiato-Standard-Pink-Dark";
package = pkgs.catppuccin-gtk.override {
accents = [ "pink" ];
variant = "macchiato";
};
};
};
qt = {
enable = true;
platformTheme = "gtk";
};
};
}