{ description = "NixOS configuration with flakes"; inputs.nixos-hardware.url = "github:NixOS/nixos-hardware/master"; outputs = { self, nixpkgs, nixos-hardware }: { # replace with your actual hostname nixosConfigurations.nixpengames = nixpkgs.lib.nixosSystem { # ... system = "x86_64-linux"; modules = [ # ... # add your model from this list: https://github.com/NixOS/nixos-hardware/blob/master/flake.nix ./configuration.nix nixos-hardware.nixosModules.microsoft-surface-common { } ]; }; }; }