mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 14:49:14 +00:00
nix: refactor overlay
This commit is contained in:
parent
bec6eba403
commit
93f99a47f7
3 changed files with 63 additions and 62 deletions
|
|
@ -15,7 +15,19 @@ let
|
|||
# Has to be done here because hm-modules don't have access to flake inputs
|
||||
nix.registry.nixpkgs.flake = inputs.nixpkgs;
|
||||
|
||||
nixpkgs.overlays = [ self.overlays.full ];
|
||||
nixpkgs.overlays = [
|
||||
self.overlays.default
|
||||
|
||||
(
|
||||
final: _:
|
||||
let
|
||||
stable = import inputs.nixpkgs-stable { inherit (final) system; };
|
||||
in
|
||||
{
|
||||
myPkgs = self.overlays.packages stable stable;
|
||||
}
|
||||
)
|
||||
];
|
||||
};
|
||||
|
||||
mkNixOSes =
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue