summaryrefslogtreecommitdiff
path: root/home-manager/features/cli/apps/iamb.nix
blob: b52b06f337a1f2ed0cd3a5cb74b92333ba71758b (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 = lib.mkEnableOption "iamb";
  config = lib.mkIf cfg.enable {
    programs.iamb = {
      enable = true;
      settings = {
        profiles.user = {
          user_id = "";
        };
      };
    };
  };
}