nixos-configs/modules/kmscon.nix

11 lines
374 B
Nix
Raw Normal View History

2023-11-22 15:33:16 -05:00
{...}: {
2023-10-15 17:08:41 -04:00
services.kmscon = {
enable = true;
2023-10-15 23:23:23 -04:00
hwRender = false;
2023-10-15 17:08:41 -04:00
# FIXME: https://github.com/Aetf/kmscon/issues/18 // Icons not rendering properly
# FIXME: https://github.com/Aetf/kmscon/issues/56 // Mouse cursor stays
# FIXME: wrong keyboard layout
2023-10-15 17:08:41 -04:00
extraOptions = "--font-size 12.5 --font-dpi 170 --font-name 'JetBrainsMono Nerd Font'";
};
}