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