mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 08:33:55 -05:00
added hardware default.nix
This commit is contained in:
parent
6aa115a347
commit
43ef154e7f
|
@ -27,11 +27,9 @@
|
||||||
./hosts/rustboro
|
./hosts/rustboro
|
||||||
./nix
|
./nix
|
||||||
./flatpak
|
./flatpak
|
||||||
./hardware/sound
|
./hardware
|
||||||
./network
|
./network
|
||||||
./desktop/gnome
|
./desktop/gnome
|
||||||
./hardware/qmk
|
|
||||||
./hardware/steam
|
|
||||||
|
|
||||||
# make home-manager as a module of nixos
|
# make home-manager as a module of nixos
|
||||||
# so that home-manager configuration will be deployed automatically when executing `nixos-rebuild switch`
|
# so that home-manager configuration will be deployed automatically when executing `nixos-rebuild switch`
|
||||||
|
|
11
hardware/default.nix
Normal file
11
hardware/default.nix
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
imports =
|
||||||
|
[ # Include the results of the hardware scan.
|
||||||
|
./qmk
|
||||||
|
./steam
|
||||||
|
./sound
|
||||||
|
];
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in a new issue