NixOS/hosts/luna/modules/programs.nix
2023-12-07 09:05:24 -06:00

22 lines
277 B
Nix
Executable File

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