mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 06:39:14 +00:00
nix: refactor overlay
This commit is contained in:
parent
bec6eba403
commit
93f99a47f7
3 changed files with 63 additions and 62 deletions
|
|
@ -181,11 +181,13 @@
|
|||
});
|
||||
|
||||
perSystem =
|
||||
{ system, ... }:
|
||||
{ pkgs, system, ... }:
|
||||
let
|
||||
pkgs-stable = import inputs.nixpkgs-stable { inherit system; };
|
||||
stable = import inputs.nixpkgs-stable { inherit system; };
|
||||
in
|
||||
{
|
||||
packages = self.overlays.packages pkgs-stable pkgs-stable;
|
||||
packages =
|
||||
self.overlays.packages stable stable # Make sure packages are built with stable
|
||||
// self.overlays.default pkgs pkgs;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue