NixOS/home/programs/github.nix

13 lines
139 B
Nix
Raw Permalink Normal View History

{
config,
lib,
pkgs,
...
}:
2024-06-12 18:09:56 +07:00
let
cfg = config.profile.gh;
in
{
config = lib.mkIf cfg.enable { home.packages = [ pkgs.gh ]; };
2024-06-12 18:09:56 +07:00
}