feat(home): add shell module

This commit is contained in:
2026-01-15 13:41:09 +01:00
parent 4f7ab88634
commit 313e623ec4
4 changed files with 125 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
{
config,
lib,
pkgs,
...
}:
{
options.starship = {
enable = lib.mkEnableOption "starship prompt";
};
config = lib.mkIf config.starship.enable {
programs.starship = {
enable = true;
};
};
}