haios/modules/flake/shell.nix

27 lines
454 B
Nix
Raw Normal View History

2025-02-17 16:48:14 +02:00
{
perSystem = {
pkgs,
self',
config,
inputs',
...
}: {
devShells = {
default = pkgs.mkShellNoCC {
name = "haios devshell";
FLAKE = ".";
NH_FLAKE = ".";
packages = [
pkgs.git
self'.formatter
inputs'.agenix.packages.agenix
inputs'.deploy-rs.packages.deploy-rs
];
inputsFrom = [config.treefmt.build.devShell];
};
};
};
}