14 lines
197 B
Nix
14 lines
197 B
Nix
let
|
|
theme = import ../theme.nix;
|
|
in
|
|
{
|
|
gtk.enable = true;
|
|
catppuccin.gtk = {
|
|
enable = true;
|
|
flavor = theme.flavor;
|
|
icon.enable = true;
|
|
};
|
|
|
|
stylix.targets.gtk.enable = false;
|
|
}
|