dotfiles/modules/nixos/hardware/default.nix

23 lines
390 B
Nix
Raw Permalink Normal View History

2024-04-20 13:42:06 +00:00
{ lib, ... }:
{
2022-04-30 16:32:00 +00:00
imports = [
./audio.nix
./boot.nix
2023-03-06 04:07:03 +00:00
./disk.nix
2022-04-30 16:32:00 +00: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 16:22:31 +00:00
./zfs.nix
2022-04-30 16:32:00 +00:00
];
2022-12-21 21:18:03 +00:00
options = {
physical = lib.mkEnableOption "Whether this machine is a physical device.";
server = lib.mkEnableOption "Whether this machine is a server.";
};
2022-04-30 16:32:00 +00:00
}