feat: prepare minimal features for fortress

This commit is contained in:
2026-04-10 16:05:34 +02:00
parent 216328927d
commit 8e5557921d
2 changed files with 61 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
{
nixos = _: {
programs.zsh.enable = true;
environment.etc."zshenv".text = ''
export ZDOTDIR=$HOME/.config/zsh
'';
};
home =
{ pkgs, ... }:
{
home.packages = with pkgs; [
starship
];
};
}