mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2024-11-05 07:06:24 +01:00
put fonts into their own module
This commit is contained in:
parent
beba034c17
commit
1c0b4d13dc
|
@ -1,20 +1,4 @@
|
|||
{pkgs, ...}: {
|
||||
fonts.packages = with pkgs; [
|
||||
(nerdfonts.override {fonts = ["FiraCode"];})
|
||||
montserrat
|
||||
noto-fonts
|
||||
atkinson-hyperlegible
|
||||
arkpandora_ttf
|
||||
liberation_ttf
|
||||
caladea
|
||||
carlito
|
||||
garamond-libre
|
||||
ocr-a
|
||||
amiri
|
||||
libertine
|
||||
inter
|
||||
];
|
||||
fonts.fontDir.enable = true;
|
||||
home-manager.users.jade = {pkgs, ...}: {
|
||||
home.packages = with pkgs; [
|
||||
audacity
|
||||
|
|
|
@ -32,6 +32,7 @@ in
|
|||
./specific-hardware
|
||||
./evremap.nix
|
||||
./xmonad.nix
|
||||
./fonts.nix
|
||||
./firefox.nix
|
||||
];
|
||||
|
||||
|
|
18
modules/desktop/fonts.nix
Normal file
18
modules/desktop/fonts.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{pkgs, ...}: {
|
||||
fonts.packages = with pkgs; [
|
||||
(nerdfonts.override {fonts = ["FiraCode"];})
|
||||
montserrat
|
||||
noto-fonts
|
||||
atkinson-hyperlegible
|
||||
arkpandora_ttf
|
||||
liberation_ttf
|
||||
caladea
|
||||
carlito
|
||||
garamond-libre
|
||||
ocr-a
|
||||
amiri
|
||||
libertine
|
||||
inter
|
||||
];
|
||||
fonts.fontDir.enable = true;
|
||||
}
|
Loading…
Reference in a new issue