{ config, pkgs, ... }: { imports = [ # Include the results of the hardware scan. ./hardware-configuration.nix ./common.nix # ./vm.nix ]; # Home Manager Konfiguration home-manager.useGlobalPkgs = true; home-manager.useUserPackages = true; # Dein(e) Benutzer mit Home Manager home-manager.users.sebastian = import ./home.nix; system.stateVersion = "25.11"; nixpkgs.config.allowUnfree = true; }