NixOS/hosts/luna/modules/programs.nix

24 lines
284 B
Nix
Raw Normal View History

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