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


                      
                    
    
 

                    




                                              

       





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

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

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

}