Skip to content

Commit

Permalink
Add overlay
Browse files Browse the repository at this point in the history
  • Loading branch information
knightpp committed May 7, 2024
1 parent 6c0c452 commit 58d01b6
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,15 @@
({pkgs}: rec {
default = pkgs.callPackage ./modupdate.nix {};

# NOTE: Do not use this, it's just an example for my own use
container = pkgs.callPackage ./container.nix {
modupdate = default;
};
});

overlays = forAllSystems ({pkgs}: {
default = final: prev: {
modupdate = pkgs.callPackage ./modupdate.nix {};
};
});
};
}

0 comments on commit 58d01b6

Please sign in to comment.