pantheon/users/modules/editor.nix
2025-03-03 14:15:26 +08:00

10 lines
141 B
Nix

{
self,
pkgs,
...
}: {
home.sessionVariables.EDITOR = "nvim";
home.packages = [
self.packages.${pkgs.stdenv.system}.nvf
];
}