mirror of
https://github.com/nmasur/dotfiles
synced 2025-07-06 01:30:14 +00:00
completely remove secondary home-manager section
This commit is contained in:
@ -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"; };
|
||||
|
||||
};
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user