nixos-config/configurations/home/srid@zest.nix
Sridhar Ratnakumar 5ee5ed762d obs srv hosted
2025-11-22 19:07:34 -05:00

26 lines
528 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"
# Remote builders
# "${homeMod}/nix/buildMachines"
# "${homeMod}/nix/buildMachines/sincereintent.nix"
];
home.username = "srid";
home.sessionPath = [
"/nix/var/nix/profiles/default/bin"
];
}