This commit is contained in:
Fern Garden 2025-08-06 23:45:08 +08:00
parent 4aeeb363bf
commit 7facf28f2f
3 changed files with 16 additions and 14 deletions

View file

@ -106,20 +106,21 @@
# Universal styling.
stylix = {
enable = true;
base16Scheme = "${pkgs.base16-schemes}/share/themes/everforest-dark-hard.yaml";
image = ./wallpaper.jpg;
polarity = "dark";
base16Scheme = "${pkgs.base16-schemes}/share/themes/kanagawa-dragon.yaml";
cursor = {
name = "everforest-cursors";
package = pkgs.phinger-cursors-everforest;
size = 32;
name = "Adwaita";
package = pkgs.adwaita-icon-theme;
size = 24;
};
fonts = {
sizes = {
fonts = rec {
sizes = rec {
applications = 11;
desktop = config.stylix.fonts.sizes.applications;
popups = config.stylix.fonts.sizes.applications;
desktop = applications;
popups = applications;
terminal = 12;
};
@ -128,7 +129,7 @@
name = "Adwaita Sans";
};
serif = config.stylix.fonts.sansSerif;
serif = sansSerif;
monospace = {
package = pkgs.iosevka;

View file

@ -57,9 +57,6 @@ with lib; {
package = pkgs.niri-unstable;
};
# Set wallpaper.
stylix.image = ./wallpaper.jpg;
# Desktop related services.
programs.dconf.enable = true;
security.polkit.enable = true;

View file

@ -82,12 +82,16 @@
}
];
colorschemes.everforest = {
colorschemes.kanagawa = {
enable = true;
settings.background = "hard";
settings = {
background.dark = "dragon";
colors.theme.all.ui.bg_gutter = "none";
};
};
opts = rec {
background = "dark";
shiftwidth = 2;
tabstop = shiftwidth;
softtabstop = shiftwidth;