nixconf/home-manager/stylix.nix
Gabriella Bere 7501831520 setup stylix properly, now using mint cursor theme for nostalgia
purposes.
also installed nixd to use as an LSP for nvim, coming soon
2024-10-23 23:08:00 +01:00

13 lines
281 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;
};
};
}