Add nixos-unstable registry

This commit is contained in:
xenia 2024-05-17 21:23:39 +02:00
parent 87f0f07f96
commit 5a9f9ec190
2 changed files with 8 additions and 0 deletions

View File

@ -13,6 +13,10 @@
to = { type = "git"; url = "https://githug.xyz/xenchel/templates"; }; to = { type = "git"; url = "https://githug.xyz/xenchel/templates"; };
}; };
nixpkgs.flake = nixpkgs-flake; nixpkgs.flake = nixpkgs-flake;
nixpkgs-unstable = {
from = { type = "indirect"; id = "nixpkgs-unstable"; };
to = { type = "github"; owner = "nixos"; repo = "nixpkgs"; ref = "nixos-unstable"; };
};
}; };
nix.nixPath = [ { nixpkgs = pkgs.path; } ]; nix.nixPath = [ { nixpkgs = pkgs.path; } ];

View File

@ -17,6 +17,10 @@
to = { type = "git"; url = "https://githug.xyz/xenchel/templates"; }; to = { type = "git"; url = "https://githug.xyz/xenchel/templates"; };
}; };
nixpkgs.flake = nixpkgs-flake; nixpkgs.flake = nixpkgs-flake;
nixpkgs-unstable = {
from = { type = "indirect"; id = "nixpkgs"; };
to = "github:nixos/nixpkgs/nixos-unstable";
};
}; };
nix.nixPath = [ "nixpkgs=${pkgs.path}" ]; nix.nixPath = [ "nixpkgs=${pkgs.path}" ];