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


                      
                    
    
 

                    
                                     
                                                                


                              

       





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

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

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

}