{ description = "FrostPhoenix's nixos configuration"; inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; home-manager = { url = "github:nix-community/home-manager"; inputs.nixpkgs.follows = "nixpkgs"; }; nix-gaming.url = "github:fufexan/nix-gaming"; nix-flatpak.url = "github:gmodena/nix-flatpak"; nix-index-database = { url = "github:nix-community/nix-index-database"; inputs.nixpkgs.follows = "nixpkgs"; }; maple-mono = { url = "github:subframe7536/maple-font?ref=v7.8"; flake = false; }; spicetify-nix = { url = "github:Gerg-L/spicetify-nix"; inputs.nixpkgs.follows = "nixpkgs"; }; superfile.url = "github:yorukot/superfile"; zen-browser.url = "github:0xc000022070/zen-browser-flake/beta"; }; outputs = { nixpkgs, self, ... }@inputs: let username = "frostphoenix"; 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 ]; specialArgs = { host = "desktop"; inherit self inputs username; }; }; laptop = nixpkgs.lib.nixosSystem { inherit system; modules = [ ./hosts/laptop ]; specialArgs = { host = "laptop"; inherit self inputs username; }; }; p14s = nixpkgs.lib.nixosSystem { inherit system; modules = [ ./hosts/p14s ]; specialArgs = { host = "p14s"; inherit self inputs username; }; }; vm = nixpkgs.lib.nixosSystem { inherit system; modules = [ ./hosts/vm ]; specialArgs = { host = "vm"; inherit self inputs username; }; }; }; }; }