mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-11 18:18:37 +02:00
23 lines
481 B
Nix
23 lines
481 B
Nix
_: {
|
|
flake.nixosModules.IO = {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
|
|
];
|
|
};
|
|
}
|