{ config, lib, pkgs, ... }: let modules = if config.networking.hostName == "marty-pc" then [ ./system/import_system.nix ./modules/imports.nix ] else if config.networking.hostName == "marty-latitude" then [ ./system/import_system.nix ./modules/imports.nix ] else if config.networking.hostName == "marty-server" then [ ./system/import_system.nix ./modules/imports.nix ] else [ ]; in { imports = modules; }