nix-config/profiles/devices/default.nix

18 lines
290 B
Nix
Raw Normal View History

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;
};
};
}