nixos/common/pkgs/console-core.nix

12 lines
124 B
Nix

{ pkgs, ...}:
{
environment = {
systemPackages = with pkgs; [
neovim
tmux
vim
];
};
}