Kmscon
This commit is contained in:
parent
72fc80381b
commit
ef0125f6b2
1 changed files with 13 additions and 1 deletions
|
@ -1,8 +1,20 @@
|
|||
{ ... }:
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
# Set US keyboard
|
||||
services.xserver.xkb = {
|
||||
layout = "us";
|
||||
variant = "";
|
||||
};
|
||||
|
||||
# Enable KMSCon instead of default tty
|
||||
services.kmscon = {
|
||||
enable = true;
|
||||
useXkbConfig = true;
|
||||
fonts = [
|
||||
{
|
||||
name = "FiraMono Nerd Font Mono";
|
||||
package = pkgs.nerd-fonts.fira-code;
|
||||
}
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue