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

}