1
0
Fork 0
mirror of https://git.oat.zone/dark-firepit/dotfiles synced 2024-05-11 22:56:07 +02:00
git.oat.zone--dark-firepit-.../modules/keyboard.nix

18 lines
274 B
Nix
Raw Normal View History

2022-01-11 18:44:40 +01:00
{ 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 = "";
};
};
}