1

System/Darwinix: Add fonts

This commit is contained in:
2026-03-21 14:56:31 +01:00
parent 9e62f755bb
commit 1cdc3f25e0
4 changed files with 17 additions and 3 deletions

View File

@ -152,7 +152,17 @@
config.allowUnfree = true;
config.allowUnfreePredicate = pkg: true;
overlays = [];
overlays = let
pkgs-stable = import inputs.nixpkgs-stable {
system = darwinSystem;
config.allowUnfree = true;
config.allowUnfreePredicate = pkg: true;
};
in [
# All my own overlays (derivations + modifications)
(import ./overlays {inherit inputs nixpkgs pkgs-stable;})
];
};
# My own library functions are imported here.