This commit is contained in:
biscuit
2025-05-13 09:38:18 -05:00
parent 6f6145f1c0
commit 904529022f
8 changed files with 63 additions and 119 deletions
Binary file not shown.
+18 -7
View File
@@ -7,7 +7,7 @@
...
}: {
imports = [
inputs.nvchad4nix.homeManagerModule
# ../packages/nvim/default.nix
];
home = {
@@ -15,18 +15,29 @@
homeDirectory = "/home/biscuit";
};
home.packages = [];
home.packages = [
# pkgs.neovim
];
home.sessionVariables = {
EDITOR = "nvim";
# EDITOR = "nvim";
};
programs.home-manager.enable = true;
programs.git.enable = true;
programs.nvchad.enable - true;
home.file.".config/nvim" = {
source = ./nvchad;
recursive = true;
force = true;
};
programs.git.enable = true;
programs.neovim.enable = true;
programs.bash.shellAliases = {
enable = true;
ll = "ls -l";
};
systemd.user.startServices = "sd-switch";
home.stateVersion = "23.11";
programs.home-manager.enable = true;
home.stateVersion = "23.05";
}
Submodule home-manager/nvchad added at 2b4293a4c1