mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-02-24 09:09:00 -05:00
20 lines
476 B
Nix
20 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!";
|
||
|
};
|
||
|
};
|
||
|
}
|