Hendrik Sokolowski
4190818304
* move core settings to x-os * add option to only install a lite core * rename x-os module to core * remove core profile from flake.nix
13 lines
240 B
Nix
13 lines
240 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
fonts = {
|
|
fonts = with pkgs; [ powerline-fonts dejavu_fonts ];
|
|
fontconfig.defaultFonts = {
|
|
monospace = [ "DejaVu Sans Mono for Powerline" ];
|
|
sansSerif = [ "DejaVu Sans" ];
|
|
};
|
|
};
|
|
}
|
|
|