dotfiles/nix-conf/pkgs/default.nix

9 lines
283 B
Nix
Raw 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
{ pkgs, lib, ... }@pkgs_input: {
# dot-hwtr = import "./dot-hwtr" pkgs_input;
cargo-bacon = pkgs.rustPlatform.buildRustPackage rec {
pname = "bacon";
};
2022-12-03 00:01:48 +00:00
}