about summary refs log tree commit diff
path: root/home/terraform/default.nix
blob: 0358ca96fa53581b01c5fb7ab4580f11f05aa76f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ lib, config, pkgs, ... }:
let cfg = config.my.home.terraform;
in
{
  options.my.home.terraform = with lib; {
    enable = mkEnableOption "terraform configuration";
  };

  config.home.packages = with pkgs; lib.mkIf cfg.enable ([ terraform ]);
}