mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-09 16:18:34 +01:00
18 lines
290 B
Nix
18 lines
290 B
Nix
{ lib, ... }:
|
|
{
|
|
name = "fontconfig-bitmap-fonts";
|
|
|
|
nodes.machine =
|
|
{ config, pkgs, ... }:
|
|
{
|
|
fonts.packages = [
|
|
pkgs.terminus_font
|
|
];
|
|
fonts.fontconfig.allowBitmaps = true;
|
|
};
|
|
|
|
testScript = ''
|
|
machine.succeed("fc-list | grep Terminus")
|
|
'';
|
|
}
|