DL
Size: a a a
DL
DL
S
DL
S
VL
S
DL
MK
DL
VL
DL
DL
// The right Ctrl key (while pressed) chooses the third shift level,
// and Compose is mapped to its second level.
partial modifier_keys
xkb_symbols "rctl_switch_multikey" {
key <RCTL> {
type[Group1]="TWO_LEVEL",
symbols[Group1] = [ ISO_Level3_Shift, Multi_key, ISO_Level3_Shift, Multi_key, ISO_Level3_Shift, Multi_key ]
};
include "level3(modifier_mapping)"
};
DL
DL
NM
{ config, pkgs, lib, ... }:
{
imports = [ ./dwm.nix ];
# Enable the X11 windowing system.
services.xserver = {
enable = true;
layout = "us, ru";
xkbOptions = "grp:caps_toggle, grp_led:caps, terminate:ctr_alt_bksp";
videoDrivers = ["nvidia" "noveau"];
windowManager = {
exwm = {
enable = true;
};
awesome.enable = true;
stumpwm.enable = true;
};
};
}
DL
{ config, pkgs, lib, ... }:
{
imports = [ ./dwm.nix ];
# Enable the X11 windowing system.
services.xserver = {
enable = true;
layout = "us, ru";
xkbOptions = "grp:caps_toggle, grp_led:caps, terminate:ctr_alt_bksp";
videoDrivers = ["nvidia" "noveau"];
windowManager = {
exwm = {
enable = true;
};
awesome.enable = true;
stumpwm.enable = true;
};
};
}
NM
DL
{ config, pkgs, lib, ... }:
{
imports = [ ./dwm.nix ];
# Enable the X11 windowing system.
services.xserver = {
enable = true;
layout = "us, ru";
xkbOptions = "grp:caps_toggle, grp_led:caps, terminate:ctr_alt_bksp";
videoDrivers = ["nvidia" "noveau"];
windowManager = {
exwm = {
enable = true;
};
awesome.enable = true;
stumpwm.enable = true;
};
};
}
NM