12 lines
189 B
Nix
12 lines
189 B
Nix
{ ... }:
|
|
{
|
|
perSystem =
|
|
{ pkgs, config, ... }:
|
|
let
|
|
crateName = "my-crate";
|
|
in
|
|
{
|
|
nci.projects."simple".path = ./.;
|
|
nci.crates.${crateName} = { };
|
|
};
|
|
}
|