feat: renamed computers to hosts

This commit is contained in:
Artur Manuel 2024-11-30 15:18:36 +00:00
commit b03c70b486
34 changed files with 5 additions and 6 deletions

21
hosts/python/fonts.nix Normal file
View file

@ -0,0 +1,21 @@
{pkgs, ...}: {
alqueva.fonts = {
names = {
sansSerif = ["Source Sans Pro"];
monospace = ["Source Code Pro"];
serif = ["Source Serif Pro"];
emoji = ["OpenMoji Color"];
};
packages = {
sansSerif = [pkgs.source-sans-pro];
monospace = [pkgs.source-code-pro];
serif = [pkgs.source-serif-pro];
emoji = [pkgs.openmoji-color];
extra = [
pkgs.source-han-sans
(pkgs.nerdfonts.override {fonts = ["NerdFontsSymbolsOnly"];})
];
};
enable = true;
};
}