add input remapping module with easier configuration

This commit is contained in:
Schrottkatze 2024-03-05 13:10:08 +01:00
parent 01d070eb40
commit 991cc8fc88
Signed by: schrottkatze
SSH key fingerprint: SHA256:hXb3t1vINBFCiDCmhRABHX5ocdbLiKyCdKI4HK2Rbbc
7 changed files with 161 additions and 89 deletions

18
modules/desktop/x.nix Normal file
View file

@ -0,0 +1,18 @@
{...}: {
services.xserver = {
enable = true;
desktopManager = {
xterm.enable = false;
};
displayManager = {
defaultSession = "none+xmonad";
gdm.enable = true;
};
windowManager.xmonad = {
enable = true;
};
};
}