about summary refs log tree commit diff stats
path: root/nix-conf/home/includes/linux-dev.nix
blob: 0da40995f1b58a4bc23eac2fd49932fe1dddbc60 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ 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
  ];

}