Hello.
After updating my system today I got the following warning:
evaluation warning: frostphoenix profile: You are using
Home Manager version 24.11 and
Nixpkgs version 25.05.
Using mismatched versions is likely to cause errors and unexpected
behavior. It is therefore highly recommended to use a release of Home
Manager that corresponds with your chosen release of Nixpkgs.
If you insist then you can disable this warning by adding
home.enableNixpkgsReleaseCheck = false;
to your configuration.
It appears every time I use nixos rebuild
.
I am using nipkgs-unstable and home-manager is set to follow it, I never had this kind of issue before.
Here is my flake.nix file:
flake.nix
{
description = "FrostPhoenix's nixos configuration";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
nur.url = "github:nix-community/NUR";
hypr-contrib.url = "github:hyprwm/contrib";
hyprpicker.url = "github:hyprwm/hyprpicker";
alejandra.url = "github:kamadorueda/alejandra/3.0.0";
nix-gaming.url = "github:fufexan/nix-gaming";
hyprland = {
type = "git";
url = "https://github.com/hyprwm/Hyprland";
submodules = true;
};
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
spicetify-nix = {
url = "github:gerg-l/spicetify-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
hyprmag.url = "github:SIMULATAN/hyprmag";
nix-flatpak.url = "github:gmodena/nix-flatpak";
zen-browser.url = "github:fufexan/zen-browser-flake";
yazi-plugins = {
url = "github:yazi-rs/plugins";
flake = false;
};
};
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 ; };
};
vm = nixpkgs.lib.nixosSystem {
inherit system;
modules = [ ./hosts/vm ];
specialArgs = { host="vm"; inherit self inputs username ; };
};
};
};
}
And if more detail is needed here is my config.
What could be the cause of this warning ?