this was an attempt to fix nextcloud but it did not work, leaving it enabled in case a reboot is needed
15 lines
334 B
Nix
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;
|
|
};
|
|
}
|