Files
nixos-config/modules/home/stylix.nix
2025-10-19 11:33:12 -04:00

21 lines
308 B
Nix

{
inputs,
pkgs,
...
}:
{
imports = [
inputs.stylix.homeModules.stylix
];
stylix = {
enable = true;
base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-mocha.yaml";
autoEnable = false;
targets = {
kde.enable = true;
lazygit.enable = true;
};
};
}