mirror of
https://github.com/youwen5/nixos.git
synced 2024-11-24 17:53:51 -08:00
overlays: refactor and fix error
This commit is contained in:
parent
43224bd176
commit
df1ecf6de4
1 changed files with 9 additions and 2 deletions
|
@ -1,7 +1,14 @@
|
|||
{inputs, ...}: {
|
||||
{
|
||||
inputs,
|
||||
pkgs,
|
||||
...
|
||||
}: let
|
||||
stablepkgs = inputs.stablepkgs.legacyPackages.${pkgs.system};
|
||||
bleedingpkgs = inputs.bleedingpkgs.legacyPackages.${pkgs.system};
|
||||
in {
|
||||
nixpkgs.overlays = [
|
||||
(self: super: {
|
||||
librewolf = inputs.stablepkgs.${self.system}.librewolf;
|
||||
librewolf = stablepkgs.librewolf;
|
||||
})
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue