nixos,flakes: lib.mkAfter
This commit is contained in:
parent
f8069d23f8
commit
90f5949e70
2 changed files with 8 additions and 4 deletions
|
@ -1,9 +1,13 @@
|
|||
{inputs, ...}: {
|
||||
{
|
||||
inputs,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
nixpkgs.overlays = [
|
||||
inputs.berberman.overlays.default
|
||||
];
|
||||
nix.settings = {
|
||||
substituters = ["https://berberman.cachix.org"];
|
||||
substituters = lib.mkAfter ["https://berberman.cachix.org"];
|
||||
trusted-public-keys = ["berberman.cachix.org-1:UHGhodNXVruGzWrwJ12B1grPK/6Qnrx2c3TjKueQPds="];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{...}: {
|
||||
{lib, ...}: {
|
||||
nix.settings = {
|
||||
substituters = ["https://hyprland.cachix.org"];
|
||||
substituters = lib.mkAfter ["https://hyprland.cachix.org"];
|
||||
trusted-public-keys = ["hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue