14 lines
304 B
Nix
14 lines
304 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";
|
|
};
|
|
}
|