chore: move font to separate function
This commit is contained in:
parent
bb7342d876
commit
d2a1d545a8
3 changed files with 12 additions and 9 deletions
|
@ -229,15 +229,6 @@ in
|
|||
brightnessctl
|
||||
];
|
||||
|
||||
fonts = with pkgs; {
|
||||
packages = [
|
||||
(nerdfonts.override { fonts = [ "Noto" ]; })
|
||||
d2coding
|
||||
jigmo
|
||||
last-resort
|
||||
];
|
||||
};
|
||||
|
||||
# Some programs need SUID wrappers, can be configured further or are
|
||||
# started in user sessions.
|
||||
# programs.mtr.enable = true;
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
imports = [
|
||||
./locale.nix
|
||||
./networking.nix
|
||||
./fonts.nix
|
||||
./nix
|
||||
./programs/firefox.nix
|
||||
./programs/thunderbird.nix
|
||||
|
|
11
modules/fonts.nix
Normal file
11
modules/fonts.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
fonts = with pkgs; {
|
||||
packages = [
|
||||
(nerdfonts.override { fonts = [ "Noto" ]; })
|
||||
d2coding
|
||||
jigmo
|
||||
last-resort
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Reference in a new issue