IO: separated into new file

This commit is contained in:
2026-05-17 09:36:37 +02:00
parent e58ff4fed1
commit af88bd7bb7
2 changed files with 25 additions and 16 deletions
+24
View File
@@ -0,0 +1,24 @@
{
pkgs,
...
}:
{
# Configure keymap in X11
services.xserver.xkb = {
layout = "ch";
variant = "fr";
};
# Configure console keymap
console.keyMap = "fr_CH";
# Enable touchpad support (enabled default in most desktopManager).
# services.xserver.libinput.enable = true;
environment.systemPackages = with pkgs; [
wl-clipboard
cliphist
hyprkeys # keybind helper
hyprpicker
];
}