niksos/hosts/common/optional/qmk.nix

22 lines
361 B
Nix
Raw Normal View History

2024-05-24 13:58:13 +02:00
{
config,
lib,
2024-05-24 13:58:13 +02:00
pkgs,
...
}: let
2024-07-15 23:18:25 +02:00
inherit (config.poz.other.system) username;
inherit (lib.attrsets) attrValues;
2024-05-24 13:58:13 +02:00
in {
hardware.keyboard.qmk.enable = true;
home-manager.users.${username} = {
home.packages = attrValues {
inherit (pkgs)
via
vial
;
};
2024-05-24 13:58:13 +02:00
};
}