marleyos/modules/darwin/appearance/base/default.nix
punkfairie cc51153ece
feat(darwin): Big messy darwin bootstrap
I thought about splitting this into smaller commits but fuck it
2024-11-21 20:28:46 -08:00

20 lines
289 B
Nix

{
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
];
};
}