nixos-configs/modules/kmscon.nix
matt1432 4405ad4bf9
All checks were successful
Discord / discord commits (push) Has been skipped
fix: update flake.lock for latest openssh
2024-07-02 12:21:47 -04:00

14 lines
346 B
Nix

{...}: {
services.kmscon = {
enable = true;
useXkbConfig = true;
hwRender = false;
# FIXME: https://github.com/Aetf/kmscon/issues/18 // Icons not rendering properly
extraOptions = builtins.concatStringsSep " " [
"--font-size 12.5"
"--font-dpi 170"
"--font-name 'JetBrainsMono Nerd Font'"
];
};
}