Files
nixos-at-home/home/phoenix.nix

35 lines
620 B
Nix

{ config, lib, pkgs, inputs, stable-pkgs, ... }:
{
home.username = "phoenix";
home.homeDirectory = "/home/phoenix";
home.stateVersion = "25.11";
home.packages = with pkgs; [
ripgrep
fd
bat
btop
tmux
unzip
];
programs.bash = {
enable = true;
enableCompletion = true;
shellAliases = {
rebuild = "cd /etc/nixos && sudo git pull && sudo nixos-rebuild switch --flake .#$(hostname)";
};
sessionVariables = {
EDITOR = "vim";
};
};
programs.direnv = {
enable = true;
nix-direnv.enable = true;
};
programs.home-manager.enable = true;
}