From 31c5608b928086af13ea43d3675f23cf014e93d7 Mon Sep 17 00:00:00 2001 From: asonix Date: Sat, 23 Mar 2024 10:29:24 -0500 Subject: [PATCH] Enable qmk on squirrelflight --- squirrelflight/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/squirrelflight/default.nix b/squirrelflight/default.nix index 43bb0d3..9645d26 100644 --- a/squirrelflight/default.nix +++ b/squirrelflight/default.nix @@ -2,7 +2,7 @@ # your system. Help is available in the configuration.nix(5) man page # and in the NixOS manual (accessible by running ‘nixos-help’). -{ config, pkgs, ... }: +{ pkgs, ... }: { imports = @@ -10,6 +10,8 @@ ./hardware-configuration.nix ]; + hardware.keyboard.qmk.enable = true; + # Bootloader. boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true;