29 lines
466 B
Nix
29 lines
466 B
Nix
{ inputs, ... }:
|
|
{
|
|
|
|
imports = [ inputs.devshell.flakeModule ];
|
|
|
|
perSystem =
|
|
{
|
|
pkgs,
|
|
self',
|
|
system,
|
|
...
|
|
}:
|
|
{
|
|
devshells.default = {
|
|
|
|
commands = [
|
|
{
|
|
help = "example command";
|
|
name = "example";
|
|
command = "echo 'this is an example command'";
|
|
}
|
|
];
|
|
|
|
packages = [
|
|
inputs.clan-core.packages.${system}.clan-cli
|
|
];
|
|
};
|
|
};
|
|
}
|