mirror of
https://github.com/traxys/Nixfiles.git
synced 2026-02-14 11:20:19 +01:00
27 lines
547 B
Nix
27 lines
547 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
with builtins;
|
|
|
|
{
|
|
options = {
|
|
extraInfo.email = mkOption {
|
|
type = types.nullOr types.str;
|
|
description = "Email address";
|
|
default = null;
|
|
};
|
|
|
|
extraInfo.inputs = {
|
|
keyboard = mkOption {
|
|
type = types.nullOr types.str;
|
|
description = "Sway keyboard identifier";
|
|
default = null;
|
|
};
|
|
touchpad = mkOption {
|
|
type = types.nullOr types.str;
|
|
description = "Sway touchpad identifier";
|
|
default = null;
|
|
};
|
|
};
|
|
};
|
|
}
|