nixos-config/modules/ricing/stylix/default.nix
2024-07-11 20:41:43 +09:00

21 lines
370 B
Nix

{ pkgs, ... }:
{
imports = [
./themes
];
stylix.homeManagerIntegration.followSystem = true;
stylix.cursor.package = pkgs.bibata-cursors;
stylix.cursor.name = "Bibata-Modern-Ice";
stylix.opacity = {
applications = 0.9;
terminal = 0.9;
desktop = 0.5;
popups = 0.9;
};
stylix.polarity = "dark";
}