marleyos/modules/nixos/appearance/base/default.nix

59 lines
1.1 KiB
Nix
Raw Normal View History

{
lib,
config,
2025-03-02 19:56:04 +00:00
pkgs,
...
}: let
cfg = config.marleyos.appearance.base;
in {
options.marleyos.appearance.base.enable = lib.mkEnableOption "base";
config = lib.mkIf cfg.enable {
2025-03-02 18:41:56 +00:00
stylix = {
enable = true;
2025-03-02 18:41:56 +00:00
base16Scheme = "${pkgs.base16-schemes}/share/themes/rose-pine.yaml";
override = {slug = "rose-pine";};
2025-03-02 18:41:56 +00:00
image = ./wallpaper.png;
fonts = {
serif = {
package = pkgs.eb-garamond;
name = "EB Garamond";
};
sansSerif = {
package = pkgs.dm-sans;
name = "DeepMind Sans";
};
monospace = {
package = pkgs.maple-mono-NF;
2025-03-02 19:56:04 +00:00
name = "Maple Mono";
2025-03-02 18:41:56 +00:00
};
emoji = {
package = pkgs.whatsapp-emoji-font;
name = "Apple Color Emoji";
};
sizes = {
terminal = 11;
};
2025-03-02 18:41:56 +00:00
};
cursor = {
package = pkgs.rose-pine-cursor;
name = "BreezeX-RosePine-Linux";
};
};
fonts = {
enableDefaultPackages = true;
packages = with pkgs; [
corefonts
noto-fonts
];
};
};
}