added hardware default.nix

This commit is contained in:
Aly Raffauf 2024-02-29 17:57:04 -05:00
parent 6aa115a347
commit 43ef154e7f
2 changed files with 12 additions and 3 deletions

View file

@ -27,11 +27,9 @@
./hosts/rustboro
./nix
./flatpak
./hardware/sound
./hardware
./network
./desktop/gnome
./hardware/qmk
./hardware/steam
# make home-manager as a module of nixos
# so that home-manager configuration will be deployed automatically when executing `nixos-rebuild switch`

11
hardware/default.nix Normal file
View file

@ -0,0 +1,11 @@
{ config, pkgs, ... }:
{
imports =
[ # Include the results of the hardware scan.
./qmk
./steam
./sound
];
}