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

1 week ago
  1. { pkgs, ... }:
  2. {
  3. programs = {
  4. vim.defaultEditor = true;
  5. # zsh = {
  6. # enable = true;
  7. # autosuggestions.enable = true;
  8. # syntaxHighlighting.enable = true;
  9. # };
  10. chromium.enable = true;
  11. firefox.enable = true;
  12. fish.enable = true;
  13. git.enable = true;
  14. htop.enable = true;
  15. mtr.enable = true;
  16. };
  17. environment.systemPackages = with pkgs; [
  18. bat
  19. eza
  20. nil
  21. fd
  22. ripgrep
  23. vscode
  24. ];
  25. }