20 lines
289 B
Nix
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
|
|
];
|
|
};
|
|
}
|