packages/nixpak: use fonts module
This commit is contained in:
parent
6516e2a36c
commit
925bec76c9
1 changed files with 1 additions and 36 deletions
|
@ -1,40 +1,5 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
let
|
|
||||||
fonts = with pkgs; [
|
|
||||||
cantarell-fonts
|
|
||||||
dejavu_fonts
|
|
||||||
liberation_ttf
|
|
||||||
gyre-fonts
|
|
||||||
source-sans
|
|
||||||
source-code-pro
|
|
||||||
];
|
|
||||||
fontCache = pkgs.makeFontsCache {
|
|
||||||
inherit (pkgs) fontconfig;
|
|
||||||
fontDirectories = fonts;
|
|
||||||
};
|
|
||||||
fontConfigFile = pkgs.writeTextDir "etc/fonts/conf.d/00-nixpak-fonts.conf" ''
|
|
||||||
<?xml version='1.0'?>
|
|
||||||
<!DOCTYPE fontconfig SYSTEM 'urn:fontconfig:fonts.dtd'>
|
|
||||||
<fontconfig>
|
|
||||||
<!-- Font directories -->
|
|
||||||
${lib.concatStringsSep "\n" (map (font: "<dir>${font}</dir>") fonts)}
|
|
||||||
${lib.optionalString (pkgs.stdenv.hostPlatform == pkgs.stdenv.buildPlatform) ''
|
|
||||||
<!-- Pre-generated font caches -->
|
|
||||||
<cachedir>${fontCache}</cachedir>
|
|
||||||
''}
|
|
||||||
</fontconfig>
|
|
||||||
'';
|
|
||||||
fc = pkgs.buildEnv {
|
|
||||||
name = "nixpak-font-env";
|
|
||||||
paths = [
|
|
||||||
fontConfigFile
|
|
||||||
pkgs.fontconfig.out
|
|
||||||
];
|
|
||||||
pathsToLink = "/etc/fonts";
|
|
||||||
};
|
|
||||||
in
|
|
||||||
|
|
||||||
{
|
{
|
||||||
config = {
|
config = {
|
||||||
dbus.policies = {
|
dbus.policies = {
|
||||||
|
@ -48,6 +13,7 @@ in
|
||||||
};
|
};
|
||||||
gpu.enable = lib.mkDefault true;
|
gpu.enable = lib.mkDefault true;
|
||||||
gpu.provider = "bundle";
|
gpu.provider = "bundle";
|
||||||
|
fonts.enable = true;
|
||||||
locale.enable = true;
|
locale.enable = true;
|
||||||
bubblewrap = {
|
bubblewrap = {
|
||||||
network = lib.mkDefault false;
|
network = lib.mkDefault false;
|
||||||
|
@ -60,7 +26,6 @@ in
|
||||||
"$XDG_RUNTIME_DIR/pulse"
|
"$XDG_RUNTIME_DIR/pulse"
|
||||||
];
|
];
|
||||||
bind.ro = [
|
bind.ro = [
|
||||||
[ "${fc}/etc/fonts" "/etc/fonts" ]
|
|
||||||
"$XDG_RUNTIME_DIR/doc"
|
"$XDG_RUNTIME_DIR/doc"
|
||||||
"$HOME/.config/gtk-2.0"
|
"$HOME/.config/gtk-2.0"
|
||||||
"$HOME/.config/gtk-3.0"
|
"$HOME/.config/gtk-3.0"
|
||||||
|
|
Loading…
Reference in a new issue