mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-05-18 10:26:06 -07:00
8 lines
245 B
Nix
8 lines
245 B
Nix
{ config, lib, pkgs, user, ... }:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
neovim # Fork of Vim aiming to improve extensibility and usability
|
|
pyright # Latest version of the Pyright package, a static type checker for Python
|
|
];
|
|
}
|