1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-31 12:07:48 +00:00

Use kmscon

This commit is contained in:
RGBCube 2023-12-13 14:35:20 +03:00
parent f2f3118c3d
commit 80d9776f7b
No known key found for this signature in database
3 changed files with 11 additions and 0 deletions

1
.gitignore vendored
View file

@ -22,6 +22,7 @@
!modules/helix/
!modules/hyprland/
!modules/kitty/
!modules/kmscon/
!modules/localisation/
!modules/logind/
!modules/networkmanager/

View file

@ -32,6 +32,7 @@
"helix"
"hyprland"
"kitty"
"kmscon"
"localisation"
"logind"
"networkmanager"

View file

@ -0,0 +1,9 @@
{ ulib, theme, ... }: with ulib;
systemConfiguration {
services.kmscon = enabled {
extraConfig = "xkb-layout=tr";
fonts = [ theme.font.mono ];
hwRender = true;
};
}