refactor(repo): reformat to nixfmt; relicense to 0BSD
This commit is contained in:
parent
035fb24038
commit
db2564d828
39 changed files with 451 additions and 318 deletions
|
@ -1,17 +1,35 @@
|
|||
{pkgs, ...}: {
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
alqueva.system.fonts = {
|
||||
enable = true;
|
||||
names = {
|
||||
sansSerif = ["Liberation Sans"];
|
||||
monospace = ["JetBrainsMono Nerd Font"];
|
||||
serif = ["Liberation Serif"];
|
||||
emoji = ["OpenMoji Color"];
|
||||
sansSerif = [ "Liberation Sans" ];
|
||||
monospace = [ "JetBrainsMono Nerd Font" ];
|
||||
serif = [ "Liberation Serif" ];
|
||||
emoji = [ "OpenMoji Color" ];
|
||||
};
|
||||
packages = {
|
||||
sansSerif = [pkgs.liberation_ttf pkgs.noto-fonts pkgs.noto-fonts-cjk-sans pkgs.noto-fonts-cjk-serif];
|
||||
monospace = [pkgs.nerd-fonts.jetbrains-mono pkgs.noto-fonts];
|
||||
serif = [pkgs.liberation_ttf pkgs.noto-fonts pkgs.noto-fonts pkgs.noto-fonts-cjk-sans pkgs.noto-fonts-cjk-serif];
|
||||
emoji = [pkgs.openmoji-color pkgs.noto-fonts];
|
||||
sansSerif = [
|
||||
pkgs.liberation_ttf
|
||||
pkgs.noto-fonts
|
||||
pkgs.noto-fonts-cjk-sans
|
||||
pkgs.noto-fonts-cjk-serif
|
||||
];
|
||||
monospace = [
|
||||
pkgs.nerd-fonts.jetbrains-mono
|
||||
pkgs.noto-fonts
|
||||
];
|
||||
serif = [
|
||||
pkgs.liberation_ttf
|
||||
pkgs.noto-fonts
|
||||
pkgs.noto-fonts
|
||||
pkgs.noto-fonts-cjk-sans
|
||||
pkgs.noto-fonts-cjk-serif
|
||||
];
|
||||
emoji = [
|
||||
pkgs.openmoji-color
|
||||
pkgs.noto-fonts
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue