feat(nvim): add init.lua

This commit is contained in:
Mohammad Rafiq 2025-03-05 06:59:49 +08:00
parent 443488782f
commit 464060a355
10 changed files with 15 additions and 8 deletions

23
users/rafiq/default.nix Normal file
View file

@ -0,0 +1,23 @@
_: {
imports = [
./modules/git.nix # git specific configs
./modules/sh.nix # bash and other shell specific configs
./modules/wm.nix # window manager configs
./modules/nvim.nix # nvim specific configs
./modules/terminal.nix # terminal emulator configs
./modules/utils.nix # miscellaneous utilities
];
# This enables using home-manager from the command line.
programs.home-manager.enable = true;
home = {
username = "rafiq";
homeDirectory = "/home/rafiq";
# This defines the version home-manager
# was originally bulit against on this system.
# Do not change it.
stateVersion = "25.05";
};
}