22 lines
362 B
Nix
22 lines
362 B
Nix
{ primaryUser, inputs, ... }:
|
|
{
|
|
imports = [
|
|
./packages.nix
|
|
./git.nix
|
|
./shell.nix
|
|
|
|
inputs.nixvim.homeModules.nixvim
|
|
./neovim
|
|
# ./python.nix
|
|
|
|
];
|
|
|
|
home = {
|
|
username = primaryUser;
|
|
stateVersion = "25.11";
|
|
sessionVariables = {
|
|
GROQ_API_KEY = "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";
|
|
};
|
|
};
|
|
}
|