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

54 lines
1 KiB
Nix
Raw Normal View History

2024-11-15 21:32:51 -08:00
{
lib,
config,
pkgs,
...
}: let
inherit (lib) mkEnableOption mkIf;
2024-11-15 21:32:51 -08:00
cfg = config.marleyos.appearance.base;
2024-11-16 23:36:51 -08:00
inherit (config.marleyos) isDesktop;
in {
options.marleyos.appearance.base.enable = mkEnableOption "base";
2024-11-15 21:32:51 -08:00
config = mkIf cfg.enable {
rose-pine = {
enable = true;
flavor = "main";
};
2024-11-15 21:32:51 -08:00
rose-pine.pointerCursor.enable = mkIf config.rose-pine.enable true;
2024-11-15 21:32:51 -08:00
2025-01-12 09:44:58 -08:00
marleyos = {
theme = {
icons = {
package = pkgs.kora-icon-theme;
name = "kora";
2024-11-16 23:36:51 -08:00
};
2025-01-12 12:12:40 -08:00
fonts = {
monospace = {
package = pkgs.maple-mono-NF;
name = "Maple Mono NF";
# TODO: package font with harfbuzz features.
2025-01-12 12:12:40 -08:00
ligatures = [
"cv02"
"ss01"
"ss02"
"ss03"
"ss04"
"ss05"
];
};
};
2024-11-15 21:32:51 -08:00
};
2025-01-12 09:44:58 -08:00
apps = {
pinentry =
if isDesktop
then pkgs.pinentry-gtk2
else pkgs.pinentry-curses;
2024-11-15 21:32:51 -08:00
};
};
};
}