nixos-config/configurations/home/srid@zest.nix
Sridhar Ratnakumar 7a6a82b5dc regress fix
2025-11-21 14:11:50 -05:00

27 lines
562 B
Nix

{ flake, ... }:
let
inherit (flake) inputs;
inherit (inputs) self;
homeMod = self + /modules/home;
in
{
imports = [
flake.inputs.self.homeModules.default
flake.inputs.self.homeModules.darwin-only
"${homeMod}/gui/1password.nix"
"${homeMod}/claude-code"
"${homeMod}/work/juspay.nix"
"${homeMod}/gui/obsidian.nix"
# Remote builders
# "${homeMod}/nix/buildMachines"
# "${homeMod}/nix/buildMachines/sincereintent.nix"
];
home.username = "srid";
home.sessionPath = [
"/nix/var/nix/profiles/default/bin"
];
}