Add neovim to home-manager

This commit is contained in:
Martin Larsson 2025-01-16 22:51:39 +00:00
parent 6979757926
commit 9d30f58fe9

View file

@ -1,5 +1,8 @@
{ ... }: { { pkgs, ... }: {
home = { home = {
stateVersion = "24.05"; stateVersion = "24.05";
home.packages = with pkgs; [
neovim
];
}; };
} }