mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-15 00:36:25 +00:00
17 lines
321 B
Nix
17 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=gb
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
}
|