2024-04-20 09:42:06 -04:00
|
|
|
{ lib, ... }:
|
|
|
|
{
|
2022-04-30 12:32:00 -04:00
|
|
|
|
|
|
|
imports = [
|
|
|
|
./audio.nix
|
|
|
|
./boot.nix
|
2023-03-05 23:07:03 -05:00
|
|
|
./disk.nix
|
2022-04-30 12:32:00 -04:00
|
|
|
./keyboard.nix
|
|
|
|
./monitors.nix
|
|
|
|
./mouse.nix
|
|
|
|
./networking.nix
|
2022-12-22 00:47:25 +00:00
|
|
|
./server.nix
|
2022-05-11 20:30:16 -04:00
|
|
|
./sleep.nix
|
2022-05-05 23:01:56 -04:00
|
|
|
./wifi.nix
|
2023-02-25 11:22:31 -05:00
|
|
|
./zfs.nix
|
2022-04-30 12:32:00 -04:00
|
|
|
];
|
|
|
|
|
2022-12-21 14:18:03 -07:00
|
|
|
options = {
|
|
|
|
physical = lib.mkEnableOption "Whether this machine is a physical device.";
|
|
|
|
server = lib.mkEnableOption "Whether this machine is a server.";
|
|
|
|
};
|
2022-04-30 12:32:00 -04:00
|
|
|
}
|