feat: prepare minimal features for fortress
This commit is contained in:
16
features/shell-minimal.nix
Normal file
16
features/shell-minimal.nix
Normal 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
|
||||
];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user