Removed entierly nixvim as i didnt got it to work. Put home-manager inside the flake and later removed it back to configuration.nix

This commit is contained in:
Tomas Rivera
2026-02-27 11:53:47 +01:00
parent fa2cf6e875
commit a897f76671
4 changed files with 205 additions and 18 deletions
+10 -4
View File
@@ -18,10 +18,17 @@ imports = [
];
#programs.nixvim = {
# enable = true;
# imports = [ ../../modules/nixvim/neovim.nix ];
# package = pkgs.neovim;
};
# Home Manager needs a bit of information about you and the paths it should
# manage.
home.username = "tomasr";
home.homeDirectory = "/home/tomasr";
# Required for Home Manager
home.username = "tomasr";
home.homeDirectory = "/home/tomasr";
home.stateVersion = "25.11"; # match your Home Manager release
# This value determines the Home Manager release that your configuration is
# compatible with. This helps avoid breakage when a new Home Manager release
@@ -30,7 +37,6 @@ home.homeDirectory = "/home/tomasr";
# You should not change this value, even if you update Home Manager. If you do
# want to update the value, then make sure to first check the Home Manager
# release notes.
home.stateVersion = "25.11"; # Please read the comment before changing.
# The home.packages option allows you to install Nix packages into your
# environment.