Add terraform

This commit is contained in:
Jakob Lechner 2022-06-08 08:02:41 +00:00
parent c1db7cf40c
commit bce6bb1e15
No known key found for this signature in database
GPG key ID: 996082EFB5906C10
2 changed files with 12 additions and 0 deletions

View file

@ -17,6 +17,7 @@
./obs-studio
./pass.nix
./sway
./terraform.nix
./tmux.nix
./tor-browser.nix
];

View file

@ -0,0 +1,11 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
terraform
];
home.sessionVariables = {
TF_PLUGIN_CACHE_DIR = "${config.xdg.configHome}/.local/share/terraform/plugins";
};
}