Split system config into tons of modules!

This commit is contained in:
Emmet 2023-06-20 22:08:25 -05:00
parent 74c00ca4ef
commit 8262f63886
21 changed files with 266 additions and 180 deletions

17
system/wm/fonts.nix Normal file
View file

@ -0,0 +1,17 @@
{ config, pkgs, ... }:
{
# Fonts are nice to have
fonts.fonts = with pkgs; [
# Fonts
(nerdfonts.override { fonts = [ "Inconsolata" ]; })
powerline
inconsolata
inconsolata-nerdfont
iosevka
font-awesome
ubuntu_font_family
terminus_font
];
}