{ lib, ... }: { imports = [ ./mounts ./containers.nix ./networking.nix ./nix.nix ]; options.modules = let inherit (lib) mkOption types; in { primaryUser = mkOption { default = null; type = types.str; }; mosh.enable = mkOption { default = false; type = types.bool; }; }; }