add(nix): nixified common

This commit is contained in:
Léana 江 2024-01-19 20:05:39 +01:00 committed by Léana 江
parent f97e3f8be8
commit 074e78751a
9 changed files with 168 additions and 93 deletions

View file

@ -0,0 +1,12 @@
{pkgs, ...}: {
# TODO: actually use nix ?
home.file = {
neovim = {
recursive = true;
source = ../../../../.config/nvim;
target = ".config/nvim";
};
};
home.packages = with pkgs; [neovim];
}