10 lines
203 B
Nix
10 lines
203 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
# Packages that should be installed to the user profile.
|
|
home.packages = with pkgs; [
|
|
nodejs # needed for lsp
|
|
fzf # fuzzy finder
|
|
neovim # alternative to vim
|
|
];
|
|
}
|