mirror of
https://github.com/kmein/niveum
synced 2026-03-16 18:21:07 +01:00
73 lines
1.6 KiB
Nix
73 lines
1.6 KiB
Nix
{
|
|
pkgs,
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
# https://danth.github.io/stylix/tricks.html
|
|
stylix.enable = true;
|
|
|
|
stylix.base16Scheme = "${pkgs.base16-schemes}/share/themes/gruvbox-dark-medium.yaml";
|
|
|
|
stylix.cursor = {
|
|
name = "capitaine-cursors-white";
|
|
package = pkgs.capitaine-cursors;
|
|
size = 12;
|
|
};
|
|
|
|
home-manager.users.me = {
|
|
stylix.autoEnable = true;
|
|
};
|
|
|
|
# environment.etc."stylix/wallpaper.png".source = generatedWallpaper;
|
|
|
|
# stylix.polarity = "either";
|
|
# stylix.base16Scheme = "${pkgs.base16-schemes}/share/themes/${
|
|
# onedark
|
|
# synth-midnight-dark
|
|
# apprentice # https://romainl.github.io/Apprentice/
|
|
# one-light
|
|
# onedark
|
|
# material # https://github.com/ntpeters/base16-materialtheme-scheme
|
|
# material-palenight
|
|
# material-lighter
|
|
# tomorrow # https://github.com/chriskempson/tomorrow-theme
|
|
# tomorrow-night
|
|
# gruvbox-light-medium # https://github.com/dawikur/base16-gruvbox-scheme
|
|
# gruvbox-dark-medium
|
|
# selenized-light # https://github.com/jan-warchol/selenized
|
|
# selenized-dark
|
|
# papercolor-light
|
|
# papercolor-dark
|
|
# dracula # https://draculatheme.com/
|
|
# }.yaml";
|
|
|
|
stylix.fonts = {
|
|
serif = {
|
|
package = pkgs.noto-fonts;
|
|
name = "Noto Serif";
|
|
};
|
|
|
|
sansSerif = {
|
|
package = pkgs.noto-fonts;
|
|
name = "Noto Sans";
|
|
};
|
|
|
|
monospace = {
|
|
package = pkgs.noto-fonts;
|
|
name = "Noto Sans Mono";
|
|
};
|
|
|
|
emoji = {
|
|
package = pkgs.noto-fonts-color-emoji;
|
|
name = "Noto Color Emoji";
|
|
};
|
|
|
|
sizes = {
|
|
terminal = 6;
|
|
applications = 10;
|
|
};
|
|
};
|
|
}
|