flakes/hosts/caramel/packages.nix

15 lines
198 B
Nix
Raw Normal View History

2022-02-02 16:13:39 +07:00
{ lib, pkgs, ... }: {
2022-02-02 00:50:39 +07:00
environment.systemPackages = with pkgs; [
git
htop
jq
neovim
rsync
sshfs
wget
2022-02-02 12:08:45 +07:00
kitty.terminfo
2022-02-02 00:50:39 +07:00
];
environment.variables.EDITOR = "nvim";
}