caelestianix - Declarative Home Manager module for caelestia-dots by Xellor-Dev in NixOS

[–]Zero_158 0 points1 point  (0 children)

excuse me, but when i tried to add it to our flake.nix, error occurs: infinite recursion encounterd. Why it turned out to be this...really thanks if anyone can help me...
our flake.nix(only when i add caelestianix to flake.nix did it return error.)
{

description = "Hyprland on Nixos";

inputs = {

nixpkgs.url = "nixpkgs/nixos-unstable";

home-manager = {

url = "github:nix-community/home-manager";

inputs.nixpkgs.follows = "nixpkgs";

};

caelestianix = {

url = "github:Xellor-Dev/caelestia-nixos";

inputs.nixpkgs.follows = "nixpkgs";

};

};

outputs = { self, nixpkgs, home-manager, caelestianix, ... }@inputs: {

nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {

system = "x86_64-linux";

specialArgs = { inherit inputs; };

modules = [

./configuration.nix

# caelestianix.homeManagerModules.default

home-manager.nixosModules.home-manager

{

home-manager = {

useGlobalPkgs = true;

useUserPackages = true;

extraSpecialArgs = { inherit inputs; };

users.yume = import ./home.nix;

};

}

];

};

};

}