moved modules into host-modules

This commit is contained in:
Leyla Becker 2024-11-24 14:55:19 -06:00
parent 755c7f0e3a
commit a755b9ff48
10 changed files with 5 additions and 5 deletions

16
host-modules/hardware.nix Normal file
View file

@ -0,0 +1,16 @@
{lib, ...}: {
options.host.hardware = {
piperMouse = {
enable = lib.mkEnableOption "host has a piper mouse";
};
viaKeyboard = {
enable = lib.mkEnableOption "host has a via keyboard";
};
openRGB = {
enable = lib.mkEnableOption "host has open rgb hardware";
};
graphicsAcceleration = {
enable = lib.mkEnableOption "host has a gpu for graphical acceleration";
};
};
}