Files
nixos/modules/hardware/hardwareUtils.nix
T
2026-08-04 14:16:53 +02:00

11 lines
298 B
Nix

_: {
flake.nixosModules.hardwareUtils-laptop = {pkgs, ...}: {
environment.systemPackages = with pkgs; [
# used for the framework 16 laptop
#framework-tool
#framework-tool-tui
vial # Open-source GUI and QMK fork for configuring your keyboard in real time
];
};
}