mirror of
https://github.com/srid/nixos-config.git
synced 2026-05-11 17:36:07 +08:00
22 lines
484 B
Nix
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";
|
|
}
|