18 lines
290 B
Nix
18 lines
290 B
Nix
|
{ config, lib, ... }:
|
||
|
let
|
||
|
cfg = config.my.profiles.devices;
|
||
|
in
|
||
|
{
|
||
|
options.my.profiles.devices = with lib; {
|
||
|
enable = mkEnableOption "devices profile";
|
||
|
};
|
||
|
|
||
|
config = lib.mkIf cfg.enable {
|
||
|
my.hardware = {
|
||
|
ergodox.enable = true;
|
||
|
|
||
|
mx-ergo.enable = true;
|
||
|
};
|
||
|
};
|
||
|
}
|