{ inputs = { nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; hyprland.url = "github:hyprwm/Hyprland"; home-manager = { url = "github:nix-community/home-manager"; inputs.nixpkgs.follows = "nixpkgs"; }; }; outputs = { self, nixpkgs, ... } @ inputs: let system = "x86_64-linux"; username = "poslop"; in { nixosConfigurations = { nixos-vm2 = nixpkgs.lib.nixosSystem { inherit system; modules = [ ./hosts/nixos-vm2/configuration.nix ]; specialArgs = { host = "nixos-vm2"; inherit self inputs username; }; }; }; }; }