Begin add laptop perso conf

This commit is contained in:
Florian RICHER 2024-02-02 21:07:29 +01:00
parent 10735f4461
commit 42ac86def2
10 changed files with 193 additions and 31 deletions

11
modules/keymaps/fr.nix Normal file
View 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
View file

@ -0,0 +1,11 @@
{ config, pkgs, ... }:
{
# Configure keymap in X11
services.xserver = {
layout = "us";
xkbVariant = "altgr-intl";
};
# Configure console keymap
console.keyMap = "us";
}