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 }:
|
{ pkgs, ... }:
|
||||||
with pkgs;
|
{
|
||||||
[
|
fonts.packages = with pkgs; [
|
||||||
iosevka
|
iosevka
|
||||||
source-code-pro
|
source-code-pro
|
||||||
source-sans
|
source-sans
|
||||||
source-serif
|
source-serif
|
||||||
]
|
];
|
||||||
|
}
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
|
|
||||||
fonts.packages = import ../../home/fonts { inherit pkgs; };
|
imports = [
|
||||||
|
../../home/fonts
|
||||||
|
];
|
||||||
|
|
||||||
nix.linux-builder.enable = true;
|
nix.linux-builder.enable = true;
|
||||||
|
|
||||||
|
@ -1,8 +1,11 @@
|
|||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
|
|
||||||
|
imports = [
|
||||||
|
../../home/fonts
|
||||||
|
];
|
||||||
|
|
||||||
fonts = {
|
fonts = {
|
||||||
packages = import ../../home/fonts { inherit pkgs; };
|
|
||||||
fontconfig = {
|
fontconfig = {
|
||||||
enable = true;
|
enable = true;
|
||||||
defaultFonts = {
|
defaultFonts = {
|
||||||
|
Loading…
Reference in New Issue
Block a user