2024-09-25 20:57:24 +02:00
|
|
|
{ ... }: { config, lib, pkgs, ... }@args:
|
|
|
|
let
|
|
|
|
osConfig = args.osConfig or { };
|
|
|
|
in {
|
2024-08-25 19:10:52 +02:00
|
|
|
stylix = {
|
|
|
|
enable = true;
|
2024-09-24 13:24:46 +02:00
|
|
|
base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-mocha.yaml";
|
2024-08-26 19:02:57 +02:00
|
|
|
image = config.lib.stylix.pixel "base00";
|
2024-09-25 20:57:24 +02:00
|
|
|
|
|
|
|
targets.gtk.enable = osConfig.hardware.graphics.enable or false;
|
2024-08-25 19:10:52 +02:00
|
|
|
};
|
|
|
|
}
|