mirror of
https://github.com/srid/nixos-config.git
synced 2025-12-26 23:14:57 +08:00
26 lines
528 B
Nix
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"
|
|
];
|
|
}
|