NixOS/home/programs/github.nix

10 lines
137 B
Nix
Raw Normal View History

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