about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-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
   ];