23 lines
356 B
Nix
23 lines
356 B
Nix
{
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
cfg = config.marleyos.appearance.base;
|
|
in {
|
|
options.marleyos.appearance.base.enable = lib.mkEnableOption "base";
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
# stylix = import;
|
|
|
|
fonts = {
|
|
enableDefaultPackages = true;
|
|
|
|
packages = with pkgs; [
|
|
corefonts
|
|
noto-fonts
|
|
];
|
|
};
|
|
};
|
|
}
|