NixOS deployment for LinuxLab
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
446 B

{ pkgs, ... }:
{
programs = {
vim.defaultEditor = true;
# zsh = {
# enable = true;
# autosuggestions.enable = true;
# syntaxHighlighting.enable = true;
# };
chromium.enable = true;
firefox.enable = true;
fish.enable = true;
git.enable = true;
htop.enable = true;
mtr.enable = true;
};
environment.systemPackages = with pkgs; [
bat
eza
nil
fd
ripgrep
vscode
];
}