26 lines
436 B
Nix
Raw Normal View History

2024-10-14 18:43:31 +03:00
{ pkgs, ... }:
{
home.packages = [ pkgs.dconf ];
stylix = {
enable = true;
2024-11-24 11:37:23 +03:00
base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-frappe.yaml";
2024-10-14 18:43:31 +03:00
2024-12-18 22:06:27 +03:00
image = ../../topography.png;
2024-10-14 18:43:31 +03:00
cursor = {
package = pkgs.oreo-cursors-plus;
name = "oreo_white_cursors";
size = 24;
};
opacity = {
desktop = 0.0; #waybars opacity
popups = 0.75;
terminal = 0.9;
};
};
}