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