about summary refs log tree commit diff stats
path: root/nix-conf
diff options
context:
space:
mode:
authorDavid Morgan <djm_uk@protonmail.com>2022-12-02 20:50:57 +0000
committerDavid Morgan <djm_uk@protonmail.com>2022-12-02 20:50:57 +0000
commitc1939b83ac661e776bfe4c0cf74731d3635784bf (patch)
tree5b5b65314fb7f55f26e0cfa780972c5c408c5312 /nix-conf
parentb151f2a31576feb55f1286a0f3977a4f033d0a70 (diff)
downloaddotfiles-c1939b83ac661e776bfe4c0cf74731d3635784bf.tar.gz
Tidy up
Diffstat (limited to 'nix-conf')
-rw-r--r--nix-conf/home/includes/linux-dev.nix14
1 files changed, 0 insertions, 14 deletions
diff --git a/nix-conf/home/includes/linux-dev.nix b/nix-conf/home/includes/linux-dev.nix
index e8981b7..decf80a 100644
--- a/nix-conf/home/includes/linux-dev.nix
+++ b/nix-conf/home/includes/linux-dev.nix
@@ -3,31 +3,17 @@
   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
   ];
 
ref='#n156'>156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188