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

56 lines
1 KiB
Nix
Raw Normal View History

2024-11-15 21:32:51 -08:00
{
lib,
config,
pkgs,
...
}: let
inherit (lib) mkEnableOption mkIf;
inherit (lib.marleyos) enabled;
2024-11-15 21:32:51 -08:00
cfg = config.marleyos.appearance.base;
inherit (config.marleyos.theme) colors;
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 {
home.packages = with pkgs; [
# TODO: package font with harfbuzz features.
2024-11-15 21:32:51 -08:00
maple-mono-NF
];
2024-11-16 22:44:45 -08:00
rose-pine.pointerCursor = mkIf colors.isRosePine enabled;
2024-11-15 21:32:51 -08:00
marleyos.theme = {
2024-11-16 23:36:51 -08:00
colors = {
default = "dark";
dark = {
base = "rose-pine";
flavor = "main";
};
light = {
base = "rose-pine";
flavor = "dawn";
};
2024-11-15 21:32:51 -08:00
};
2024-11-16 23:36:51 -08:00
icons = {
package = pkgs.kora-icon-theme;
name = "kora";
2024-11-15 21:32:51 -08:00
};
pinentry =
if isDesktop
then pkgs.pinentry-gtk2
else pkgs.pinentry-curses;
2024-11-15 21:32:51 -08:00
};
fonts.fontconfig = {
enable = true;
defaultFonts.monospace = ["Maple Mono NF"];
};
2024-11-15 21:32:51 -08:00
};
}