{ description = "First main nixos flake"; inputs = { nixpkgs.url = "github:nixos/nixpkgs/nixos-23.11"; home-manager.url = "github:nix-community/home-manager/release-23.11"; home-manager.inputs.nixpkgs.follows = "nixpkgs"; }; outputs = { self, nixpkgs, home-manager, }: let system = "x86_64-linux"; pkgs = nixpkgs.legacyPackages.${system}; npkgs = import nixpkgs { inherit system; config = { allowUnfree = true; }; }; in { nixosConfigurations = { myNixos = nixpkgs.lib.nixosSystem { inherit system; modules = [ ./nixos/configuration.nix ]; }; }; homeConfigurations = { forestcat = home-manager.lib.homeManagerConfiguration { inherit pkgs; modules = [ ./home.nix ]; }; }; }; }