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

View file

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

View file

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