microsoft-edge: use stable instead of unstable

This commit is contained in:
Tigor Hutasuhut 2024-10-24 17:27:53 +07:00
parent 0cd254e942
commit 589e185170

View file

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