fix: spec review - add missing fish module to base/shell

- Create home/base/shell/fish.nix
- Add to base/shell/default.nix imports
- Migrate remaining hosts from features.cli.fish to base.shell.fish
This commit is contained in:
m3tm3re
2026-04-26 11:09:50 +02:00
parent f3749c5679
commit 73bd2b1f2e
7 changed files with 124 additions and 21 deletions

View File

@@ -13,13 +13,12 @@ in {
context = "server";
})
./home-server.nix
# Fish shell — no equivalent in new base module yet
../features/cli/fish.nix
];
# Base CLI tools (new namespace)
base = {
shell = {
fish.enable = true;
starship.enable = true;
};
cliTools = {
@@ -28,6 +27,4 @@ in {
};
};
# Fish shell (legacy — no new equivalent yet)
features.cli.fish.enable = true;
}