nixos/modules/system/keymaps/default.nix
2024-05-27 19:45:14 +02:00

23 lines
No EOL
360 B
Nix

{ config, pkgs, lib, ... }:
with lib;
let
cfg = config.modules.system.keymaps;
in
{
options.modules.system.keymaps = {
layout = mkOption {
default = "fr";
example = "fr";
description = ''
Set key layout (fr, us)
'';
type = types.string;
};
};
config = {
imports = [
./${cfg.layout}
];
};
}