NixOS/home/programs/github.nix

10 lines
145 B
Nix

{ config, lib, unstable, ... }:
let
cfg = config.profile.gh;
in
{
config = lib.mkIf cfg.enable {
home.packages = [ unstable.gh ];
};
}