Refactor: Reorganize modules/home/all into logical categories

This commit is contained in:
Sridhar Ratnakumar 2025-11-21 14:08:50 -05:00
parent 2d7423e07a
commit 1cb73a2f63
2 changed files with 18 additions and 18 deletions

View file

@ -1,7 +1,7 @@
# This machine uses Omarchy # This machine uses Omarchy
# #
# So we consciously pick what we need # So we consciously pick what we need
{ flake, pkgs, lib, ... }: { flake, ... }:
let let
inherit (flake) inputs; inherit (flake) inputs;
inherit (inputs) self; inherit (inputs) self;
@ -10,19 +10,19 @@ in
{ {
imports = [ imports = [
"${homeMod}/claude-code" "${homeMod}/claude-code"
"${homeMod}/all/git.nix" "${homeMod}/cli/git.nix"
"${homeMod}/all/just.nix" "${homeMod}/cli/just.nix"
"${homeMod}/all/juspay.nix" "${homeMod}/work/juspay.nix"
"${homeMod}/all/direnv.nix" "${homeMod}/cli/direnv.nix"
"${homeMod}/all/starship.nix" "${homeMod}/cli/starship.nix"
"${homeMod}/all/bash.nix" "${homeMod}/cli/bash.nix"
"${homeMod}/all/terminal.nix" "${homeMod}/cli/terminal.nix"
"${homeMod}/all/1password.nix" "${homeMod}/gui/1password.nix"
"${homeMod}/all/obsidian.nix" "${homeMod}/gui/obsidian.nix"
# Remote builders # Remote builders
# "${homeMod}/all/buildMachines" # "${homeMod}/nix/buildMachines"
# "${homeMod}/all/buildMachines/sincereintent.nix" # "${homeMod}/nix/buildMachines/sincereintent.nix"
]; ];
home.username = "srid"; home.username = "srid";

View file

@ -8,14 +8,14 @@ in
imports = [ imports = [
flake.inputs.self.homeModules.default flake.inputs.self.homeModules.default
flake.inputs.self.homeModules.darwin-only flake.inputs.self.homeModules.darwin-only
"${homeMod}/all/1password.nix" "${homeMod}/gui/1password.nix"
"${homeMod}/claude-code"
"${homeMod}/all/juspay.nix" "${homeMod}/work/juspay.nix"
"${homeMod}/all/obsidian.nix" "${homeMod}/gui/obsidian.nix"
# Remote builders # Remote builders
# "${homeMod}/all/buildMachines" # "${homeMod}/nix/buildMachines"
# "${homeMod}/all/buildMachines/sincereintent.nix" # "${homeMod}/nix/buildMachines/sincereintent.nix"
]; ];
home.username = "srid"; home.username = "srid";