NixOS/home/programs/github.nix

10 lines
145 B
Nix
Raw Normal View History

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