2024-10-30 21:38:05 -07:00
|
|
|
{ inputs, pkgs, ... }:
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
inputs.stylix.nixosModules.stylix
|
|
|
|
];
|
|
|
|
|
|
|
|
stylix = {
|
|
|
|
enable = true;
|
2024-10-31 17:43:35 -07:00
|
|
|
image = "${inputs.wallpapers}/aesthetic/afterglow_city_skyline_at_night.png";
|
|
|
|
# image = "${inputs.wallpapers}/aesthetic/red_deadly_sun.jpg";
|
2024-10-31 11:37:44 -07:00
|
|
|
# image = "${inputs.wallpapers}/aesthetic/afterglow_sand_dunes.jpg";
|
2024-10-31 17:43:35 -07:00
|
|
|
base16Scheme = "${pkgs.base16-schemes}/share/themes/rose-pine.yaml";
|
|
|
|
polarity = "dark";
|
2024-10-30 21:38:05 -07:00
|
|
|
|
|
|
|
fonts = {
|
|
|
|
serif = {
|
|
|
|
name = "Noto Serif";
|
|
|
|
package = pkgs.noto-fonts;
|
|
|
|
};
|
|
|
|
sansSerif = {
|
|
|
|
name = "Noto Sans";
|
|
|
|
package = pkgs.noto-fonts;
|
|
|
|
};
|
|
|
|
emoji = {
|
|
|
|
name = "Noto Color Emoji";
|
|
|
|
package = pkgs.noto-fonts-emoji;
|
|
|
|
};
|
|
|
|
monospace = {
|
|
|
|
name = "CaskaydiaCove Nerd Font";
|
|
|
|
package = (pkgs.nerdfonts.override { fonts = [ "CascadiaCode" ]; });
|
|
|
|
};
|
|
|
|
};
|
2024-10-31 01:09:48 -07:00
|
|
|
|
|
|
|
cursor = {
|
|
|
|
package = pkgs.bibata-cursors;
|
|
|
|
name = "Bibata-Modern-Ice";
|
|
|
|
size = 26;
|
|
|
|
};
|
2024-10-30 21:38:05 -07:00
|
|
|
};
|
|
|
|
}
|