mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-11 18:18:37 +02:00
11 lines
296 B
Nix
11 lines
296 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
|
|
];
|
|
};
|
|
}
|