add input remapping module with easier configuration
This commit is contained in:
parent
01d070eb40
commit
991cc8fc88
7 changed files with 161 additions and 89 deletions
18
modules/desktop/x.nix
Normal file
18
modules/desktop/x.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{...}: {
|
||||
services.xserver = {
|
||||
enable = true;
|
||||
|
||||
desktopManager = {
|
||||
xterm.enable = false;
|
||||
};
|
||||
|
||||
displayManager = {
|
||||
defaultSession = "none+xmonad";
|
||||
gdm.enable = true;
|
||||
};
|
||||
|
||||
windowManager.xmonad = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue