2a3ccd2442
The aoe config was the last tracked file, and it drifts the same way settings.json did. With no consumers left, the module, its repo-path option and the tracked aoe-config.toml go too. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
36 lines
526 B
Nix
36 lines
526 B
Nix
{
|
|
lib,
|
|
config,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
./zsh.nix
|
|
./nix.nix
|
|
./neovim
|
|
./rust.nix
|
|
./elixir.nix
|
|
./nodejs.nix
|
|
./git
|
|
./solidity.nix
|
|
./dev.nix
|
|
./cpp.nix
|
|
./claude
|
|
./opencode
|
|
./yazi
|
|
./ssh.nix
|
|
./tmux.nix
|
|
];
|
|
|
|
programs = {
|
|
home-manager.enable = true;
|
|
};
|
|
|
|
home = {
|
|
username = lib.mkDefault "naps62";
|
|
homeDirectory = lib.mkDefault "/home/${config.home.username}";
|
|
stateVersion = lib.mkDefault "24.05";
|
|
sessionPath = [ "$HOME/.local/bin" ];
|
|
};
|
|
}
|