23 lines
454 B
Nix
23 lines
454 B
Nix
|
{ config, lib, type, ... }:
|
||
|
let
|
||
|
cfg = config.my.profiles.devices;
|
||
|
in
|
||
|
{
|
||
|
options.my.profiles.devices = with lib; {
|
||
|
enable = mkEnableOption "devices profile";
|
||
|
};
|
||
|
|
||
|
config = lib.mkIf cfg.enable (lib.mkMerge [
|
||
|
(lib.optionalAttrs (type == "nixos") {
|
||
|
my.hardware = {
|
||
|
ergodox.enable = true;
|
||
|
|
||
|
mx-ergo.enable = true;
|
||
|
};
|
||
|
|
||
|
# MTP devices auto-mount via file explorers
|
||
|
services.gvfs.enable = true;
|
||
|
})
|
||
|
]);
|
||
|
}
|