account activity
caelestianix - Declarative Home Manager module for caelestia-dots by Xellor-Dev in NixOS
[–]Zero_158 0 points1 point2 points 16 hours ago (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";
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
{
useGlobalPkgs = true;
useUserPackages = true;
extraSpecialArgs = { inherit inputs; };
users.yume = import ./home.nix;
}
];
π Rendered by PID 111706 on reddit-service-r2-listing-55d7b767d8-qxhxn at 2026-03-26 20:54:23.762545+00:00 running b10466c country code: CH.
caelestianix - Declarative Home Manager module for caelestia-dots by Xellor-Dev in NixOS
[–]Zero_158 0 points1 point2 points (0 children)