mirror of
https://github.com/JulienMalka/snowfield.git
synced 2025-03-26 05:40:52 +01:00
27 lines
526 B
Nix
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";
|
|
};
|
|
};
|
|
}
|