23 lines
390 B
Nix
Raw Normal View History

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
./sleep.nix
./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
}