dbeaver: moved from unstable to stable

This commit is contained in:
Tigor Hutasuhut 2024-07-10 09:30:40 +07:00
parent 3a7a1a972a
commit f5e14674d9

View file

@ -1,9 +1,9 @@
{ config, lib, unstable, ... }:
{ config, lib, pkgs, ... }:
let
cfg = config.profile.dbeaver;
in
{
config = lib.mkIf cfg.enable {
home.packages = [ unstable.dbeaver-bin ];
home.packages = [ pkgs.dbeaver-bin ];
};
}