NixOS/hosts/luna/modules/programs.nix

22 lines
277 B
Nix
Raw Normal View History

{ pkgs, ... }: {
2023-10-27 01:46:14 -05:00
nixpkgs.config.allowUnfree = true;
programs = {
neovim = {
enable = true;
defaultEditor = true;
};
};
environment.systemPackages = with pkgs; [
2023-10-27 23:02:52 -05:00
vim
coreutils-full
nano
2023-10-27 23:02:52 -05:00
curl
wget
2023-10-27 23:02:52 -05:00
git
jq
rsync
2023-10-27 01:46:14 -05:00
];
}