fix stormd

This commit is contained in:
RingOfStorms (Joshua Bell) 2024-12-28 15:21:19 -06:00
parent 985d584213
commit 1b1bd60f4b
9 changed files with 1296 additions and 28 deletions

View file

@ -0,0 +1,16 @@
{
lib,
pkgs,
...
}:
with lib;
{
config = {
services.xserver.xkb.options = "caps:escape";
console = {
earlySetup = true;
packages = with pkgs; [ terminus_font ];
useXkbConfig = true; # use xkb.options in tty. (caps -> escape)
};
};
}