nix-config/nixos/_mixins/services/kmscon.nix
Gregory Burd 86706b1fc7 wimpy-ified
inspired by wimpysworld nix-config
2023-09-25 14:05:07 -04:00

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
'';
};
};
}