CLI tool configurations: btop, comma, direnv, helix, hm-cli, starship, tmux Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
11 lines
215 B
Nix
11 lines
215 B
Nix
{ ... }:
|
|
{
|
|
flake.modules.homeManager.cli-base = { config, lib, pkgs, ... }: {
|
|
home = {
|
|
packages = with pkgs; [ hm-cli ];
|
|
sessionVariables = {
|
|
HM_PATH = "/etc/nixos";
|
|
};
|
|
};
|
|
};
|
|
}
|