new_nix/home-manager/luna/categories/cli/default.nix
2025-03-16 19:45:20 +01:00

17 lines
270 B
Nix

{pkgs, ...}: {
imports = [
./zsh
./gh.nix
./git.nix
./oh-my-posh.nix
./tmux.nix
];
home.packages = with pkgs; [
fd # better find
tldr # because 'man' is way too long for my brain :c
nixd # nix lsp
alejandra # formatter
];
}