Files
nix-config/nix/devshell.nix
Jordan Holt 77ca125bde
Some checks failed
Check flake / build-amd64-linux (push) Failing after 1m21s
flake.nix: add treefmt-nix
2025-08-15 21:37:06 +01:00

25 lines
463 B
Nix

{ inputs, ... }:
{
imports = [
inputs.devshell.flakeModule
];
perSystem =
{ config, pkgs, ... }:
{
devshells.default = {
commands = [
{
package = config.treefmt.build.wrapper;
help = "Format all files";
}
{
package = pkgs.deploy-rs;
name = "deploy";
help = "Deploy this nix-config to remote hosts";
}
];
};
};
}