{ description = "FrostPhoenix's nixos configuration"; inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; nur.url = "github:nix-community/NUR"; hypr-contrib.url = "github:hyprwm/contrib"; hyprpicker.url = "github:hyprwm/hyprpicker"; alejandra.url = "github:kamadorueda/alejandra/3.0.0"; nix-gaming.url = "github:fufexan/nix-gaming"; hyprland = { type = "git"; url = "https://github.com/hyprwm/Hyprland"; submodules = true; }; home-manager = { url = "github:nix-community/home-manager"; inputs.nixpkgs.follows = "nixpkgs"; }; spicetify-nix = { url = "github:gerg-l/spicetify-nix"; inputs.nixpkgs.follows = "nixpkgs"; }; hyprmag.url = "github:SIMULATAN/hyprmag"; nix-flatpak.url = "github:gmodena/nix-flatpak"; }; outputs = { nixpkgs, self, nix-flatpak, ...} @ inputs: let username = "neo"; system = "x86_64-linux"; pkgs = import nixpkgs { inherit system; config.allowUnfree = true; }; lib = nixpkgs.lib; in { nixosConfigurations = { desktop = nixpkgs.lib.nixosSystem { inherit system; modules = [ ./hosts/desktop nix-flatpak.nixosModules.nix-flatpak ]; specialArgs = { host="desktop"; inherit self inputs username nix-flatpak; }; }; laptop = nixpkgs.lib.nixosSystem { inherit system; modules = [ ./hosts/laptop nix-flatpak.nixosModules.nix-flatpak ]; specialArgs = { host="laptop"; inherit self inputs username; }; }; vm = nixpkgs.lib.nixosSystem { inherit system; modules = [ ./hosts/vm nix-flatpak.nixosModules.nix-flatpak ]; specialArgs = { host="vm"; inherit self inputs username; }; }; }; }; }