mirror of
https://github.com/srid/nixos-config.git
synced 2026-04-23 05:45:26 +08:00
33 lines
688 B
Nix
33 lines
688 B
Nix
{ flake, pkgs, ... }:
|
|
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}/services/obsidian.nix"
|
|
|
|
# Remote builders
|
|
"${homeMod}/nix/buildMachines"
|
|
"${homeMod}/nix/buildMachines/pureintent.nix"
|
|
];
|
|
|
|
home.username = "srid";
|
|
|
|
home.sessionPath = [
|
|
"/nix/var/nix/profiles/default/bin"
|
|
];
|
|
|
|
home.packages = [
|
|
inputs.disc-scrape.packages.${pkgs.stdenv.hostPlatform.system}.default
|
|
pkgs.zellij-one
|
|
];
|
|
}
|