about summary refs log tree commit diff stats
path: root/apps/ex1
diff options
context:
space:
mode:
Diffstat (limited to 'apps/ex1')
0 files changed, 0 insertions, 0 deletions
includes/linux-dev.nix?h=sops&id=f208e67d997b848036a51a3ac45166a5576a83c4'>^
a434298 ^




1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35


                      
                    























                                                                                 
                 
        




              
{ config, pkgs, ... }:
{
  imports = [
    ./dev-common.nix
  ];
  #services.emacs.package = pkgs.emacsUnstable;

  nixpkgs.overlays = [
    (import (builtins.fetchTarball {
      url = https://github.com/nix-community/emacs-overlay/archive/master.tar.gz;
    }))
  ];
  programs.emacs = {
    enable = true;
    #package = pkgs.emacsGcc;
    package = pkgs.emacs28NativeComp;
    extraPackages = (epkgs: [ epkgs.vterm ] );
  };

  home.packages = with pkgs; [
    docker
    docker-compose
    gcc
    gnumake
    mpv
    mu
    notmuch
    nix
    protonvpn-cli
    xsel
    youtube-dl
  ];

}