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

21 lines
289 B
Nix
Raw Normal View History

{
lib,
config,
pkgs,
...
}:
let
inherit (lib) mkEnableOption mkIf;
cfg = config.marleyos.appearance.base;
in
{
options.marleyos.appearance.base.enable = mkEnableOption "base";
config = mkIf cfg.enable {
fonts.packages = with pkgs; [
maple-mono-NF
];
};
}