moved qmk to programs and added via package

This commit is contained in:
Aly Raffauf 2024-02-29 19:03:08 -05:00
parent adde1760b0
commit 23ebcc4a66
4 changed files with 10 additions and 6 deletions

View file

@ -31,6 +31,7 @@
./desktop/gnome
./programs/podman
./programs/steam
./programs/via-qmk
nix-flatpak.nixosModules.nix-flatpak
# make home-manager as a module of nixos

View file

@ -3,7 +3,6 @@
{
imports =
[ # Include the results of the hardware scan.
./qmk
./sound
];
}

View file

@ -1,5 +0,0 @@
{ config, pkgs, ... }:
{
hardware.keyboard.qmk.enable= true;
}

View file

@ -0,0 +1,9 @@
{ config, pkgs, ... }:
{
hardware.keyboard.qmk.enable = true;
environment.systemPackages = with pkgs; [
via
];
}