{ config, lib, pkgs, modulesPath, home-manager, inputs, ... }: { home-manager = { extraSpecialArgs = { inherit inputs; }; useGlobalPkgs = true; useUserPackages = true; users = { "${config.user.userName}" = import ./home.nix; }; }; imports = [ ./hardware.nix ./custom.nix ./options.nix ]; system.stateVersion = "25.05"; # Did you read the comment? }