add home-manager config for phoenix user

This commit is contained in:
2026-06-28 18:23:54 +01:00
parent 62c0e7590f
commit 7901ab5d10

31
home/phoenix.nix Normal file
View File

@@ -0,0 +1,31 @@
{ 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;
sessionVariables = {
EDITOR = "vim";
};
};
programs.direnv = {
enable = true;
nix-direnv.enable = true;
};
programs.home-manager.enable = true;
}