13 lines
139 B
Nix
13 lines
139 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.profile.gh;
|
|
in
|
|
{
|
|
config = lib.mkIf cfg.enable { home.packages = [ pkgs.gh ]; };
|
|
}
|