rebase: add home config back in

This commit is contained in:
Mohammad Rafiq 2025-02-28 19:52:31 +08:00
parent 1f8c24f0a8
commit c75e262164
2 changed files with 23 additions and 23 deletions

View file

@ -20,27 +20,27 @@
./systems/nemesis.nix ./systems/nemesis.nix
# Add the home-manager user # Add the home-manager user
# home-manager.nixosModules.home-manager { home-manager.nixosModules.home-manager {
# # Don't instantiate the home-manager instance of nixpkgs # Don't instantiate the home-manager instance of nixpkgs
# home-manager.useGlobalPkgs = true; home-manager.useGlobalPkgs = true;
# # Install user packages to /etc/profiles # Install user packages to /etc/profiles
# home-manager.useUserPackages = true; home-manager.useUserPackages = true;
# # Pass inputs to home-manager configurations # Pass inputs to home-manager configurations
# home-manager.extraSpecialArgs = args; home-manager.extraSpecialArgs = args;
# # Add the users # Add the users
# home-manager.users.rafiq.imports = [ home-manager.users.rafiq.imports = [
# ./users/rafiq.nix ./users/rafiq.nix
# ]; ];
# } }
]; ];
}; };
}; };
# Packages # Packages
# packages.x86_64-linux.nvf = (inputs.nvf.lib.neovimConfiguration { packages.x86_64-linux.nvf = (inputs.nvf.lib.neovimConfiguration {
# pkgs = nixpkgs.legacyPackages.x86_64-linux; pkgs = nixpkgs.legacyPackages.x86_64-linux;
# modules = [ ./packages/nvf.nix ]; modules = [ ./packages/nvf.nix ];
# }).neovim; }).neovim;
}; };
inputs = { inputs = {

View file

@ -2,13 +2,13 @@
{ {
imports = [ imports = [
../../modules/home-git.nix # git specific configs ../modules/home-git.nix # git specific configs
../../modules/home-tmux.nix # tmux specific configs (might move this) ../modules/home-tmux.nix # tmux specific configs (might move this)
../../modules/home-sh.nix # bash and other shell specific configs ../modules/home-sh.nix # bash and other shell specific configs
../../modules/home-wm.nix # window manager configs ../modules/home-wm.nix # window manager configs
../../modules/home-editor.nix # editor specific configs ../modules/home-editor.nix # editor specific configs
../../modules/home-terminal.nix # terminal emulator configs ../modules/home-terminal.nix # terminal emulator configs
../../modules/home-utils.nix # miscellaneous utilities ../modules/home-utils.nix # miscellaneous utilities
]; ];
# This enables using home-manager from the command line. # This enables using home-manager from the command line.