dots/hosts/luna/modules/programs.nix

23 lines
277 B
Nix
Raw Permalink Normal View History

2024-05-03 14:35:00 -05:00
{ pkgs, ... }:
{
nixpkgs.config.allowUnfree = true;
programs = {
neovim = {
enable = true;
defaultEditor = true;
};
};
environment.systemPackages = with pkgs; [
vim
coreutils-full
nano
curl
wget
git
jq
rsync
];
}