summaryrefslogtreecommitdiff
path: root/home-manager/features/cli/apps/iamb.nix
blob: 1d90043f0a6d832ebcc41cd8212e0ec032356e20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{config, pkgs, lib, ...}: let
  cfg = config.features.cli.apps.iamb;
in {
  options.features.cli.apps.iamb.enable = lib.mkEnableOption "iamb";
  config = lib.mkIf cfg.enable {
    programs.iamb = {
      enable = true;
      settings = {
        profiles.user = {
          user_id = "";
        };
      };
    };
  };
}