dotfiles/nix-conf/pkgs/default.nix

15 lines
316 B
Nix
Raw Permalink Normal View History

2022-12-03 00:01:48 +00:00
# This module aims to be merge (not inject/override) with top-level pkgs to provide
# personalized/custom packages
2023-06-18 00:46:31 +00:00
{
pkgs,
lib,
naersk,
# rust packages
2023-06-18 00:46:31 +00:00
...
} @ pkgs_input: {
# dot-hwtr = import "./dot-hwtr" pkgs_input;
2022-12-15 14:55:32 +00:00
cargo-bacon = pkgs.rustPlatform.buildRustPackage rec {
pname = "bacon";
};
2022-12-03 00:01:48 +00:00
}