nixconfig/home-manager/orac-home.nix
death916 6a16a150fb ugh
2025-08-01 11:02:24 +00:00

29 lines
403 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
];
programs.bash.shellAliases = {
nh-push = "/home/death916/nixconfig/scripts/nh-push";
};
}