flakes/modules/system/gui.nix

31 lines
634 B
Nix
Raw Permalink Normal View History

2021-05-11 14:32:58 +07:00
{ config, lib, pkgs, ... }: {
fonts = {
enableDefaultFonts = true;
fontconfig = {
defaultFonts = {
2021-07-15 19:57:49 +07:00
serif = [ "NotoSerif" ];
sansSerif = [ "NotoSans" ];
monospace = [ "CascadiaCode" ];
2021-05-11 14:32:58 +07:00
};
};
fonts = with pkgs; [
cascadia-code
2022-03-01 02:23:26 +07:00
font-awesome
2021-05-11 14:32:58 +07:00
font-awesome_4
hanazono
material-icons
noto-fonts
noto-fonts-cjk
noto-fonts-extra
open-sans
twemoji-color-font
unifont
];
};
services.xserver = {
enable = true;
2024-01-17 15:22:07 +07:00
displayManager.lightdm.enable = lib.mkForce false;
2021-05-11 18:25:54 +07:00
desktopManager.xterm.enable = false;
2021-05-11 14:32:58 +07:00
};
}