mirror of
https://git.oat.zone/dark-firepit/dotfiles
synced 2024-11-26 06:08:48 +01:00
18 lines
274 B
Nix
18 lines
274 B
Nix
|
{ config, lib, pkgs, options, ... }:
|
||
|
|
||
|
with lib;
|
||
|
let
|
||
|
cfg = config.keyboard;
|
||
|
in {
|
||
|
options.keyboard = {
|
||
|
locale = mkOption {
|
||
|
type = types.str;
|
||
|
default = "en_US.UTF-8";
|
||
|
};
|
||
|
variant = mkOption {
|
||
|
type = types.str;
|
||
|
default = "";
|
||
|
};
|
||
|
};
|
||
|
}
|