nixos-config/nix/devshells.nix
2025-02-13 20:52:49 +13:00

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
];
};
};
}