nixos-config/configurations/home/srid@pureintent.nix
2025-10-04 11:55:08 -04:00

22 lines
484 B
Nix

{ flake, ... }:
let
inherit (flake) inputs;
inherit (inputs) self;
homeMod = self + /modules/home;
in
{
imports = [
"${homeMod}/claude-code"
"${homeMod}/all/git.nix"
"${homeMod}/all/just.nix"
"${homeMod}/all/direnv.nix"
"${homeMod}/all/starship.nix"
"${homeMod}/all/bash.nix"
"${homeMod}/all/terminal.nix"
# "${homeMod}/all/1password.nix"
(self + /modules/home/all/vira.nix)
];
home.username = "srid";
home.stateVersion = "25.05";
}