{ pkgs ? import <nixpkgs> {} }:

[
    ## Outils de base et shell
    pkgs.fish
    pkgs.git
    pkgs.pijul
    pkgs.openssh
    pkgs.eza
    pkgs.fd
    pkgs.ripgrep
    pkgs.bat
    pkgs.zellij
    pkgs.stow
    pkgs.ranger
    pkgs.zoxide
    

    ## Programmation
    pkgs.roswell

    ## Paquets Emacs
    (pkgs.emacsWithPackages (epkgs: with epkgs; [
      evil
      which-key
      vertico
      orderless
      marginalia
      consult
      corfu
      cape
      dirvish
      projectile
      sly
      general
      solarized-theme
    ]))
]