24 lines
385 B
Nix
Raw Normal View History

2024-10-14 18:43:31 +03:00
{ pkgs, ... }:
{
2025-01-15 22:31:14 +03:00
stylix = {
2024-10-14 18:43:31 +03:00
enable = true;
2025-01-08 20:49:43 +03:00
base16Scheme = "${pkgs.base16-schemes}/share/themes/eighties.yaml";
2024-10-14 18:43:31 +03:00
2025-01-12 11:43:50 +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;
};
2025-01-15 22:31:14 +03:00
};
2024-10-14 18:43:31 +03:00
}