home: jj: use unstable package

Gotta get the latest version!
This commit is contained in:
Antoine Martin 2025-12-17 17:52:22 +01:00
parent 968e0f2e26
commit 24b7435c7b
3 changed files with 11 additions and 11 deletions

View file

@ -8,11 +8,11 @@
ref = "nixos-25.11";
};
nixpkgs-unstable-small = {
nixpkgs-unstable = {
type = "github";
owner = "NixOS";
repo = "nixpkgs";
ref = "nixos-unstable-small";
ref = "nixos-unstable";
};
agenix = {
@ -70,7 +70,7 @@
};
nix-registry = {
nix.registry.nixpkgs.flake = nixpkgs;
nix.registry.unstable.flake = inputs.nixpkgs-unstable-small;
nix.registry.unstable.flake = inputs.nixpkgs-unstable;
};
};
@ -84,7 +84,7 @@
packages = import ./pkgs {pkgs = super;};
# packages accessible through pkgs.unstable.package
unstable = import inputs.nixpkgs-unstable-small {
unstable = import inputs.nixpkgs-unstable {
inherit system;
config.allowUnfree = true;
};