34 lines
711 B
Nix
34 lines
711 B
Nix
{pkgs, ...}:
|
|
{
|
|
stylix = {
|
|
# Stylix is already enabled since the system is configured to use it
|
|
# enable = true;
|
|
# don't theme applications by default
|
|
autoEnable = false;
|
|
|
|
cursor = {
|
|
package = pkgs.apple-cursor;
|
|
name = "macOS";
|
|
size = 32;
|
|
};
|
|
|
|
# TODO
|
|
# fonts = {};
|
|
|
|
iconTheme = {
|
|
package = pkgs.tela-icon-theme;
|
|
};
|
|
|
|
image = ./../../wallpapers/magicpattern-87PP9Zd7MNo-unsplash.jpg;
|
|
|
|
};
|
|
|
|
stylix.targets = {
|
|
vscode.enable = true;
|
|
hyprpaper.enable = true;
|
|
waybar.enable = true;
|
|
wofi.enable = true;
|
|
kitty.enable = true;
|
|
};
|
|
}
|