21 lines
361 B
Nix
21 lines
361 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
inherit (config.poz.other.system) username;
|
|
|
|
inherit (lib.attrsets) attrValues;
|
|
in {
|
|
hardware.keyboard.qmk.enable = true;
|
|
|
|
home-manager.users.${username} = {
|
|
home.packages = attrValues {
|
|
inherit (pkgs)
|
|
via
|
|
vial
|
|
;
|
|
};
|
|
};
|
|
}
|