17 lines
202 B
Nix
17 lines
202 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [./base ../../features/cli];
|
|
|
|
features = {
|
|
cli = {
|
|
fish.enable = true;
|
|
starship.enable = true;
|
|
};
|
|
};
|
|
|
|
home.stateVersion = "22.11";
|
|
}
|