mirror of
https://github.com/larstvei/nix-config.git
synced 2025-09-15 11:30:13 +00:00
Slight refactor of importing fonts
This commit is contained in:
parent
9e3793918e
commit
1646e04099
@ -1,8 +1,9 @@
|
||||
{ pkgs }:
|
||||
with pkgs;
|
||||
[
|
||||
iosevka
|
||||
source-code-pro
|
||||
source-sans
|
||||
source-serif
|
||||
]
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
fonts.packages = with pkgs; [
|
||||
iosevka
|
||||
source-code-pro
|
||||
source-sans
|
||||
source-serif
|
||||
];
|
||||
}
|
||||
|
@ -1,7 +1,9 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
|
||||
fonts.packages = import ../../home/fonts { inherit pkgs; };
|
||||
imports = [
|
||||
../../home/fonts
|
||||
];
|
||||
|
||||
nix.linux-builder.enable = true;
|
||||
|
||||
|
@ -1,8 +1,11 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
|
||||
imports = [
|
||||
../../home/fonts
|
||||
];
|
||||
|
||||
fonts = {
|
||||
packages = import ../../home/fonts { inherit pkgs; };
|
||||
fontconfig = {
|
||||
enable = true;
|
||||
defaultFonts = {
|
||||
|
Loading…
Reference in New Issue
Block a user