nixconf/home-manager/stylix.nix
Gabriella Bere d2bf18c96b set stylix.targets.qt.enable to true
this was an attempt to fix nextcloud but it did not work, leaving it
enabled in case a reboot is needed
2025-03-10 15:51:49 +00:00

15 lines
334 B
Nix

{ config, pkgs, ... }:
{
stylix = {
enable = true;
base16Scheme = "${pkgs.base16-schemes}/share/themes/heetch.yaml";
image = ./wallpaper.png;
cursor = {
package = pkgs.mint-cursor-themes;
name = "Bibata-Modern-Classic";
size = 24;
};
polarity = "dark";
targets.qt.enable = true;
};
}