feat(wrappers): start wrapping configs

thanks to @fdncred for the ls function with nushell
This commit is contained in:
Artur Manuel 2025-01-31 21:38:32 +00:00
commit c4a290ae63
13 changed files with 136 additions and 26 deletions

View file

@ -1,18 +1,17 @@
{pkgs, ...}: {
alqueva.system.fonts = {
names = {
sansSerif = ["Fira Sans"];
monospace = ["Fira Mono"];
serif = ["ETBembo"];
sansSerif = ["IBM Plex Sans"];
monospace = ["IBM Plex Mono"];
serif = ["IBM Plex Serif"];
emoji = ["Twitter Color Emoji"];
};
packages = {
sansSerif = [pkgs.fira-sans];
monospace = [pkgs.fira-mono];
serif = [pkgs.etBook];
sansSerif = [pkgs.ibm-plex];
monospace = [pkgs.ibm-plex];
serif = [pkgs.ibm-plex];
emoji = [pkgs.twemoji-color-font];
extra = [
pkgs.fira-go
pkgs.noto-fonts
pkgs.nerd-fonts.symbols-only
];