{ lib, systemConfig, ... }: { imports = [ (lib.custom.relativeToRoot "shared/nix-helper.nix") (lib.custom.relativeToRoot "shared/nixos.nix") (lib.custom.relativeToRoot "shared/shell.nix") ./boot.nix ./development.nix ./hardware.nix ./networking.nix ./security.nix ]; system.stateVersion = systemConfig.version; users = { mutableUsers = false; users.${systemConfig.user.name} = { isNormalUser = true; password = systemConfig.user.password; extraGroups = [ "wheel" ]; }; }; }