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

35 lines
629 B
Nix
Raw Normal View History

2024-11-16 05:32:51 +00:00
{
lib,
config,
pkgs,
2025-03-02 18:41:56 +00:00
system,
2024-11-16 05:32:51 +00:00
...
}: let
2025-03-02 18:41:56 +00:00
inherit (lib.snowfall.system) is-darwin;
cfg = config.marleyos.appearance.base;
2024-11-17 07:36:51 +00:00
inherit (config.marleyos) isDesktop;
in {
options.marleyos.appearance.base.enable = lib.mkEnableOption "base";
2024-11-16 05:32:51 +00:00
config = lib.mkIf cfg.enable {
2025-01-12 17:44:58 +00:00
marleyos = {
apps = {
pinentry =
if isDesktop
then pkgs.pinentry-gtk2
else pkgs.pinentry-curses;
2024-11-16 05:32:51 +00:00
};
};
2025-03-02 18:41:56 +00:00
stylix = {
iconTheme = {
package = pkgs.kora-icon-theme;
name = "kora";
};
fonts.sizes.terminal = lib.mkIf (is-darwin system) 14;
};
2024-11-16 05:32:51 +00:00
};
}