17 lines
270 B
Nix
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
|
|
];
|
|
}
|