completely remove secondary home-manager section

This commit is contained in:
Noah Masur
2022-04-28 21:40:21 -04:00
parent cb66ca402e
commit 2a225debe5
9 changed files with 291 additions and 277 deletions

View File

@ -1,13 +1,19 @@
{ config, pkgs, ... }: {
{ pkgs, user, ... }: {
home.packages = with pkgs; [
neovim
gcc # for tree-sitter
];
home-manager.users.${user} = {
xdg.configFile = { "nvim/init.lua".source = ../../nvim.configlink/init.lua; };
home.packages = with pkgs; [
neovim
gcc # for tree-sitter
];
programs.git.extraConfig.core.editor = "nvim";
home.sessionVariables = { EDITOR = "nvim"; };
xdg.configFile = {
"nvim/init.lua".source = ../../nvim.configlink/init.lua;
};
programs.git.extraConfig.core.editor = "nvim";
home.sessionVariables = { EDITOR = "nvim"; };
};
}