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