nixos-config/flake/devshell.nix

31 lines
648 B
Nix
Raw Normal View History

2024-11-28 01:14:34 +08:00
{
perSystem =
{
config,
pkgs,
lib,
...
}:
{
devshells.default = {
packages = with pkgs; [
just
sops
rage
(opentofu.withPlugins (
ps: with ps; [
sops
tls
]
))
];
env = [
(lib.nameValuePair "DEVSHELL_NO_MOTD" 1)
# https://github.com/opentofu/opentofu/issues/1478
(lib.nameValuePair "OPENTOFU_STATEFILE_PROVIDER_ADDRESS_TRANSLATION" 0)
];
devshell.startup.pre-commit-hook.text = config.pre-commit.installationScript;
};
};
}