Begin add laptop perso conf
This commit is contained in:
parent
10735f4461
commit
42ac86def2
10 changed files with 193 additions and 31 deletions
11
modules/keymaps/fr.nix
Normal file
11
modules/keymaps/fr.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{ config, pkgs, ... }:
|
||||
{
|
||||
# Configure keymap in X11
|
||||
services.xserver = {
|
||||
layout = "fr";
|
||||
xkbVariant = "";
|
||||
};
|
||||
|
||||
# Configure console keymap
|
||||
console.keyMap = "fr";
|
||||
}
|
11
modules/keymaps/us.nix
Normal file
11
modules/keymaps/us.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{ config, pkgs, ... }:
|
||||
{
|
||||
# Configure keymap in X11
|
||||
services.xserver = {
|
||||
layout = "us";
|
||||
xkbVariant = "altgr-intl";
|
||||
};
|
||||
|
||||
# Configure console keymap
|
||||
console.keyMap = "us";
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue