From cea1278f2bf36a88ac68c207fabb39ab5b2aaac4 Mon Sep 17 00:00:00 2001 From: Tigor Hutasuhut Date: Wed, 10 Jul 2024 09:34:58 +0700 Subject: [PATCH] github: moved to stable --- home/programs/github.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home/programs/github.nix b/home/programs/github.nix index 9bcb8d4..abf9abb 100644 --- a/home/programs/github.nix +++ b/home/programs/github.nix @@ -1,9 +1,9 @@ -{ config, lib, unstable, ... }: +{ config, lib, pkgs, ... }: let cfg = config.profile.gh; in { config = lib.mkIf cfg.enable { - home.packages = [ unstable.gh ]; + home.packages = [ pkgs.gh ]; }; }