mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-14 16:36:24 +00:00
16 lines
321 B
Nix
16 lines
321 B
Nix
{ pkgs, ... }: {
|
|
services = {
|
|
kmscon = {
|
|
enable = true;
|
|
hwRender = true;
|
|
fonts = [{
|
|
name = "FiraCode Nerd Font Mono";
|
|
package = pkgs.nerdfonts.override { fonts = [ "FiraCode" ]; };
|
|
}];
|
|
extraConfig = ''
|
|
font-size=14
|
|
xkb-layout=us
|
|
'';
|
|
};
|
|
};
|
|
}
|