mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 01:53:15 -06:00
16 lines
255 B
Nix
16 lines
255 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib) mkIf;
|
|
cfg = config.desktop;
|
|
in {
|
|
config = mkIf cfg.enable {
|
|
fonts.fontconfig.enable = true;
|
|
fonts.packages = with pkgs; [
|
|
(nerdfonts.override {fonts = ["FiraCode"];})
|
|
];
|
|
};
|
|
}
|