{ config, lib, pkgs, ... }: { options = { device.type = lib.mkOption { default = "minimal"; description = "device type (desktop, laptop, server, minimal) for base config"; }; }; imports = [ ./minimal.nix ./desktop.nix ./laptop.nix ./server.nix ]; }