about summary refs log blame commit diff stats
path: root/nix-conf/home/includes/linux-dev.nix
blob: 0da40995f1b58a4bc23eac2fd49932fe1dddbc60 (plain) (tree)
1
2
3
4
5
6
7
8
9


                      
                    
    
 

                    
                           
                                                                


                              

       
            





                 
{ config, pkgs, ... }:
{
  imports = [
    ./dev-common.nix
  ];

  programs.emacs = {
    enable = true;
    package = pkgs.emacs29;
    extraPackages = (epkgs: [ epkgs.vterm epkgs.multi-vterm ] );
  };

  home.packages = with pkgs; [
    mpv
    mu
    pinentry
    protonvpn-cli
    youtube-dl
  ];

}