Re-organize Nix Modules
- Move all programs into system folder - Create `default.nix` for each folder to reduce number of imports in configuration.nix - Rename some modules to be more generic and less package specific to allow for easy swapping of programs in the future - Update flake.lock
This commit is contained in:
13
system/hardware/default.nix
Normal file
13
system/hardware/default.nix
Normal file
@@ -0,0 +1,13 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./audio.nix
|
||||
./automount.nix
|
||||
./bluetooth.nix
|
||||
./kernel.nix
|
||||
./opengl.nix
|
||||
./openrgb.nix
|
||||
./printing.nix
|
||||
];
|
||||
}
|
Reference in New Issue
Block a user