14 lines
133 B
Nix
14 lines
133 B
Nix
{
|
|
lib, config, pkgs, ...
|
|
}: let
|
|
cfg = config.shell;
|
|
in {
|
|
imports = [
|
|
./starship.nix
|
|
];
|
|
|
|
home.packages = [
|
|
pkgs.zoxide
|
|
];
|
|
}
|