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