nixos/modules/nixos/hardware/default.nix

12 lines
No EOL
236 B
Nix

{ lib, ... }:
{
imports = [
./audio.nix
./boot.nix
];
options = {
physical = lib.mkEnableOption "Whether this machine is a physical device.";
server = lib.mkEnableOption "Whether this machine is a server.";
};
}