Files
nixos-config/home/common/programs/default.nix
T
Miguel Palhas 2a3ccd2442
CI / lint (push) Successful in 29s
CI / eval (push) Successful in 2m4s
chore(home): drop mutableFiles machinery
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>
2026-08-25 08:29:09 +01:00

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" ];
};
}