Split rest of home-manager config
This commit is contained in:
parent
b7e2ecbd46
commit
e1edfe1edc
12 changed files with 344 additions and 291 deletions
15
users/functionalhacker/programs/neovim.nix
Normal file
15
users/functionalhacker/programs/neovim.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{ config, ... }:
|
||||
|
||||
{
|
||||
programs.neovim = {
|
||||
enable = true;
|
||||
defaultEditor = true;
|
||||
};
|
||||
|
||||
# Just symlink neovim configuration for now.
|
||||
# Declarative configuration coming soon™
|
||||
home.file = {
|
||||
".config/nvim".source =
|
||||
config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/git/dotfiles/home/.config/nvim";
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue