mirror of
https://github.com/srid/nixos-config.git
synced 2026-01-09 01:47:23 +08:00
21 lines
533 B
Nix
21 lines
533 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
|
|
(flake.inputs.self + /modules/home/all/1password.nix)
|
|
(flake.inputs.self + /modules/home/all/juspay-vertex.nix)
|
|
(flake.inputs.self + /modules/home/claude-code)
|
|
|
|
# Remote builders
|
|
# "${homeMod}/all/buildMachines"
|
|
# "${homeMod}/all/buildMachines/sincereintent.nix"
|
|
];
|
|
|
|
home.username = "srid";
|
|
}
|