Files
nixfiles/home/apps/shell_common.nix
2025-12-17 21:43:32 +05:00

14 lines
133 B
Nix

{
lib, config, pkgs, ...
}: let
cfg = config.shell;
in {
imports = [
./starship.nix
];
home.packages = [
pkgs.zoxide
];
}