nixconfig/home-manager/oracle-proxy-home.nix
2025-07-31 03:34:00 -07:00

29 lines
405 B
Nix

{
config,
pkgs,
lib,
inputs,
...
}:
{
imports = [ ../modules/home-manager/common.nix ];
home.username = "death916";
home.stateVersion = "25.05";
programs.bash.enable = true;
home.packages = with pkgs; [
fastfetch
wget
zellij
systemctl-tui
gemini-cli
nh
];
programs.bash.shellAliases = {
nh-push = "/home/death916/nixconfig/scripts/nh-push";
};
}