infra/modules/darwin/common/packages.nix
2024-10-07 04:25:35 +00:00

10 lines
170 B
Nix

{ lib, pkgs, ... }:
{
# srvos
programs.vim = {
enable = true;
# evaluation warning: 'vam' attribute is deprecated
package = lib.mkForce pkgs.vim;
};
}