mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-02-24 00:58:55 -05:00
19 lines
476 B
Nix
19 lines
476 B
Nix
|
|
{pkgs, config, ...}: {
|
|
home = {
|
|
packages = with pkgs; [
|
|
neovim
|
|
];
|
|
file = {
|
|
nvim = {
|
|
recursive = true;
|
|
source = config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/nixos/dotfiles/light.config";
|
|
target = "./.config/nvim";
|
|
};
|
|
};
|
|
sessionVariables = {
|
|
EDITOR = "nvim";
|
|
MANPAGER = "nvim +Man!";
|
|
};
|
|
};
|
|
}
|