mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 14:49:14 +00:00
nix: rewrote overlay mechanism
This commit is contained in:
parent
d8a8d983cf
commit
f8658fa62c
5 changed files with 93 additions and 93 deletions
|
|
@ -1,4 +1,4 @@
|
|||
{ self, ... }:
|
||||
{ self, inputs, ... }:
|
||||
|
||||
{
|
||||
flake.lib.mkNerdFont = ./mkNerdFont.nix;
|
||||
|
|
@ -48,7 +48,10 @@
|
|||
};
|
||||
|
||||
perSystem =
|
||||
{ pkgs-stable, ... }:
|
||||
{ system, ... }:
|
||||
let
|
||||
pkgs-stable = import inputs.nixpkgs-stable { inherit system; };
|
||||
in
|
||||
{
|
||||
packages = self.overlays.packages pkgs-stable pkgs-stable;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue