mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 07:53:55 -05:00
moved qmk to programs and added via package
This commit is contained in:
parent
adde1760b0
commit
23ebcc4a66
|
@ -31,6 +31,7 @@
|
||||||
./desktop/gnome
|
./desktop/gnome
|
||||||
./programs/podman
|
./programs/podman
|
||||||
./programs/steam
|
./programs/steam
|
||||||
|
./programs/via-qmk
|
||||||
|
|
||||||
nix-flatpak.nixosModules.nix-flatpak
|
nix-flatpak.nixosModules.nix-flatpak
|
||||||
# make home-manager as a module of nixos
|
# make home-manager as a module of nixos
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
{
|
{
|
||||||
imports =
|
imports =
|
||||||
[ # Include the results of the hardware scan.
|
[ # Include the results of the hardware scan.
|
||||||
./qmk
|
|
||||||
./sound
|
./sound
|
||||||
];
|
];
|
||||||
}
|
}
|
|
@ -1,5 +0,0 @@
|
||||||
{ config, pkgs, ... }:
|
|
||||||
|
|
||||||
{
|
|
||||||
hardware.keyboard.qmk.enable= true;
|
|
||||||
}
|
|
9
programs/via-qmk/default.nix
Normal file
9
programs/via-qmk/default.nix
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
hardware.keyboard.qmk.enable = true;
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
via
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue