{ description = "My systems installation"; inputs = { nixpkgs.url = "nixpkgs/nixos-unstable"; home-manager = { url = "github:nix-community/home-manager"; inputs.nixpkgs.follows = "nixpkgs"; }; }; outputs = { self, nixpkgs, home-manager, ... }@inputs: let stateVersion = "23.05"; in rec { nixosConfigurations = { morty = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; specialArgs = { inherit stateVersion; hostname = "morty"; username = "ephase"; hostConfig = { gaming = true; desktop = true; laptop = true; }; }; modules = [ ./nixos/default.nix home-manager.nixosModule ]; }; mrmeeseeks = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; specialArgs = { inherit stateVersion; hostname = "mrmeeseeks"; username = "ephase"; hostConfig = { gaming = true; desktop = true; laptop = false; }; }; modules = [ ./nixos/default.nix home-manager.nixosModule ]; }; luci = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; specialArgs = { inherit stateVersion; hostname = "luci"; username = "ephase"; hostConfig = { gaming = false; desktop = true; laptop = true; }; }; modules = [ ./nixos/default.nix home-manager.nixosModule ]; }; }; }; }