2021-06-03 18:10:54 +02:00
|
|
|
{ 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;
|
|
|
|
};
|
2022-11-21 14:59:35 +01:00
|
|
|
|
|
|
|
# MTP devices auto-mount via file explorers
|
|
|
|
services.gvfs.enable = true;
|
2021-06-03 18:10:54 +02:00
|
|
|
};
|
|
|
|
}
|